/* Profile Maker Modern Grid Layout */
.profile-maker-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Quick Actions Section */
.profile-quick-actions {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.profile-quick-actions h3 {
    margin-top: 0;
    color: #0073aa;
    margin-bottom: 1.5rem;
}

.quick-action-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.quick-action-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.quick-action-section h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Form Styles */
.profile-entry-form,
.profile-video-form,
.profile-upload-form {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.profile-entry-form > div,
.profile-video-form > div,
.profile-upload-form > div {
    flex: 1;
}

.profile-entry-form textarea,
.profile-entry-form input[type="text"],
.profile-entry-form input[type="url"],
.profile-video-form input[type="text"],
.profile-video-form input[type="url"],
.profile-upload-form input[type="text"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.profile-entry-form textarea {
    resize: vertical;
    min-height: 80px;
}

.profile-upload-form input[type="file"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
}

.profile-entry-form button,
.profile-video-form button,
.profile-upload-form button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.profile-entry-form button:hover,
.profile-video-form button:hover,
.profile-upload-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.add-entry {
    background: #0073aa;
    color: white;
}

.add-entry:hover {
    background: #005a87;
}

.profile-upload-cover {
    background: #27ae60;
    color: white;
}

.profile-upload-cover:hover {
    background: #229954;
}

.profile-upload-picture {
    background: #e74c3c;
    color: white;
}

.profile-upload-picture:hover {
    background: #c0392b;
}

/* File Preview */
.file-preview {
    margin-top: 0.5rem;
}

.file-preview img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Message Notifications */
.profile-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem;
    border-radius: 0.5rem;
    z-index: 9999;
    max-width: 300px;
    word-wrap: break-word;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Recent Activity Sections */
.profile-recent-activity,
.profile-gallery-section,
.profile-videos-section {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.profile-recent-activity h3,
.profile-gallery-section h3,
.profile-videos-section h3 {
    margin-top: 0;
    color: #0073aa;
    margin-bottom: 1rem;
}

/* Entry Items */
.entry-item {
    background: #f8fafd;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #0073aa;
}

.entry-item:last-child {
    margin-bottom: 0;
}

.entry-content {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.entry-meta {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.entry-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.entry-actions button {
    padding: 0.25rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    background: #fff;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.entry-actions button:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.like-entry.liked {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* Profile Posts Styles */
.profile-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-post-item {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-left: 4px solid #0073aa;
}

.post-header {
    margin-bottom: 1rem;
}

.post-title {
    margin: 0 0 0.5rem 0;
    color: #0073aa;
    font-size: 1.1rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.post-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-actions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.post-actions button {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.post-actions button:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.post-comments-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.post-comments-section h5 {
    margin: 0 0 0.75rem 0;
    color: #0073aa;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.comment-item {
    background: #f8fafd;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: #0073aa;
    margin-bottom: 0.25rem;
}

.comment-text {
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.comment-date {
    font-size: 0.8rem;
    color: #6c757d;
}

.add-comment-section {
    margin-top: 1rem;
}

.add-comment-form {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}

.add-comment-form textarea {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    resize: vertical;
    min-height: 60px;
}

.add-comment-btn {
    padding: 0.5rem 1rem;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-comment-btn:hover {
    background: #005a87;
}

/* Profile Videos Styles */
.profile-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.profile-video-item {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}

.profile-video-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.video-thumbnail img,
.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.video-play-overlay:hover {
    background: rgba(0,0,0,0.5);
}

.play-icon {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-info {
    padding: 1rem;
}

.video-title {
    margin: 0 0 0.5rem 0;
    color: #0073aa;
    font-size: 1rem;
}

.video-description {
    margin-bottom: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.video-actions {
    display: flex;
    gap: 0.5rem;
}

.video-actions button {
    padding: 0.25rem 0.5rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.video-actions button:hover {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

/* Profile Gallery Styles */
.profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.profile-gallery-item {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}

.profile-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.gallery-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gallery-image-container:hover .gallery-image-overlay {
    opacity: 1;
}

.gallery-image-actions {
    display: flex;
    gap: 0.5rem;
}

.gallery-image-actions button {
    padding: 0.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.gallery-image-actions button:hover {
    background: white;
    transform: scale(1.1);
}

.image-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.profile-badge {
    background: #0073aa;
}

.cover-badge {
    background: #27ae60;
}

.gallery-image-info {
    padding: 1rem;
}

.gallery-image-title {
    margin: 0 0 0.5rem 0;
    color: #0073aa;
    font-size: 0.9rem;
}

.gallery-image-description {
    margin-bottom: 0.5rem;
    color: #6c757d;
    font-size: 0.8rem;
    line-height: 1.4;
}

.gallery-image-date {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Profile Cover Styles */
.profile-maker-cover {
    position: relative;
    height: 200px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.profile-maker-avatar-wrapper {
    position: absolute;
    bottom: -50px;
    left: 2rem;
}

.profile-maker-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.profile-maker-info {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
    margin-bottom: 2rem;
}

.profile-maker-section {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
    margin-bottom: 2rem;
}

.profile-maker-section h3 {
    margin-top: 0;
    color: #0073aa;
    margin-bottom: 1.5rem;
}

.profile-maker-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.profile-maker-card {
    background: #f8fafd;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid #0073aa;
    transition: all 0.2s ease;
}

.profile-maker-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Custom Sections Styles */
.profile-custom-section {
    border-left: 4px solid #0073aa;
}
.profile-custom-section h3 {
    color: #0073aa;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.section-content {
    margin-bottom: 1rem;
    line-height: 1.6;
}
.section-fields {
    background: #f8fafd;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}
.section-field {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}
.section-field:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Custom Profile Fields Styles */
.profile-custom-fields {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}
.profile-custom-fields h4 {
    color: #0073aa;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
.profile-field {
    margin-bottom: 0.5rem;
    padding: 0.25rem 0;
}

/* Widgets Styles */
.profile-widgets {
    background: linear-gradient(135deg, #f8fafd 0%, #ffffff 100%);
}
.profile-widget-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}
.profile-widget-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,115,170,0.15);
}
.profile-widget-card h4 {
    color: #0073aa;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

/* Widget Type Specific Styles */
.profile-widget-text {
    line-height: 1.6;
}
.profile-widget-html {
    line-height: 1.6;
}
.profile-widget-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}
.profile-widget-video {
    position: relative;
    width: 100%;
}
.profile-widget-video iframe,
.profile-widget-video video {
    border-radius: 0.5rem;
}
.profile-widget-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #fff;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}
.social-link:hover {
    opacity: 0.8;
    color: #fff;
}
.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: #e4405f; }
.social-link.linkedin { background: #0077b5; }
.profile-widget-contact p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.profile-widget-contact a {
    color: #0073aa;
    text-decoration: none;
}
.profile-widget-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .profile-maker-info, .profile-maker-section {
        padding: 1rem;
    }
    .profile-maker-card-grid {
        grid-template-columns: 1fr;
    }
    .profile-maker-avatar-wrapper {
        left: 1rem;
        bottom: -40px;
    }
    .profile-maker-avatar {
        width: 80px;
        height: 80px;
    }
    .profile-widget-social {
        flex-direction: column;
    }
    .social-link {
        text-align: center;
    }
} 
/* Gallery Styles */
.profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.profile-gallery-item {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}

.profile-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.gallery-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-gallery-item:hover .gallery-image-overlay {
    opacity: 1;
}

.gallery-image-actions {
    display: flex;
    gap: 0.5rem;
}

.gallery-image-actions button {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.gallery-image-actions button:hover {
    background: white;
    transform: scale(1.1);
}

.image-badges {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.25rem;
}

.badge {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.gallery-image-info {
    padding: 1rem;
}

.gallery-image-title {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #333;
}

.gallery-image-description {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.4;
}

.gallery-image-date {
    font-size: 0.75rem;
    color: #999;
}

/* Video Styles */
.profile-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.profile-video-item {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease;
}

.profile-video-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0,0,0,0.7);
}

.play-icon {
    color: white;
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-embed {
    width: 100%;
    height: 180px;
}

.video-embed video,
.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1rem;
}

.video-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: #333;
}

.video-description {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.4;
}

.video-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #999;
}

.video-actions {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.video-actions button {
    padding: 0.25rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    background: #fff;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.video-actions button:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

/* Post Styles */
.profile-posts-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-post-item {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border-left: 4px solid #0073aa;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: #333;
}

.post-date {
    font-size: 0.875rem;
    color: #6c757d;
}

.post-actions button {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.post-actions button:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.post-content {
    margin-bottom: 1rem;
}

.post-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    color: #333;
}

.post-text {
    line-height: 1.6;
    color: #555;
}

.post-footer {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.like-post,
.like-count-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.like-post {
    background: none;
    border: 1px solid #e9ecef;
}

.like-post:hover,
.like-post.liked {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.like-icon {
    font-size: 1.1rem;
}

.comments-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.post-comments {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.add-comment-form {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.add-comment-form textarea {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    resize: vertical;
    min-height: 60px;
    font-family: inherit;
}

.add-comment-btn {
    padding: 0.75rem 1rem;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.add-comment-btn:hover {
    background: #005a87;
}

.add-comment-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Modal Styles */
.video-modal,
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content,
.image-modal-content {
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.video-modal-close,
.image-modal-close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2rem;
    color: #6c757d;
    cursor: pointer;
    z-index: 1;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.video-modal-close:hover,
.image-modal-close:hover {
    background: #f8f9fa;
    color: #333;
}

#video-player {
    width: 100%;
    max-width: 800px;
}

#modal-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 0.5rem;
}

#modal-image-info {
    margin-top: 1rem;
    text-align: center;
}

#modal-image-title {
    margin: 0 0 0.5rem 0;
    color: #333;
}

#modal-image-description {
    margin: 0;
    color: #6c757d;
    font-size: 0.875rem;
}

/* No Content Styles */
.profile-no-content {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.profile-no-content p {
    font-size: 1.1rem;
    margin: 0;
}
