/* assets/css/style.css */

:root {
    --primary-color: #d11b00;
    --secondary-color: #2e2e2e;
    --text-color: #fff;
    --background-color: #1c1c1c;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* === NEW CREATIVE PROFILE PAGE STYLES === */

.profile-dashboard { max-width: 1100px; margin: 30px auto; }

#profilePage .profile-container {
    background: #232323;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    overflow: hidden;
}
/* === PAGINATION STYLES === */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    padding: 8px 14px;
    text-decoration: none;
    color: #ccc;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 5px;
    transition: all 0.2s ease;
}
.pagination a:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.pagination a.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    cursor: default;
}
.pagination span {
    background: none;
    border: none;
}
#profilePage .profile-header {
    padding: 25px 30px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #ff5577;
}

#profilePage .profile-name {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

#profilePage .profile-status-container {
    display: flex;
    gap: 8px;
}

#profilePage .profile-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}
#profilePage .status-vip { background: silver; color: black; }
#profilePage .status-top { background: gold; color: black; }
#profilePage .status-new { background: white; color: black; }

#profilePage .profile-content {
    padding: 30px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}

#profilePage .profile-photos {
    width: 100%;
}

#profilePage .main-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
#profilePage .main-photo img { width: 100%; height: 100%; object-fit: cover; }

#profilePage .thumbnail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
#profilePage .photo-thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}
#profilePage .photo-thumbnail:hover, .photo-thumbnail.active { border-color: var(--primary-color); }
#profilePage .photo-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

#profilePage .info-section {
    margin-bottom: 30px;
}
#profilePage .info-title {
    font-size: 18px;
    font-weight: 600;
    color: #eee;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}
#profilePage .info-title i { color: var(--primary-color); }

#profilePage .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}
#profilePage .info-item {
    background: #2a2a2e;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}
#profilePage .info-item .info-label { font-size: 13px; color: #aaa; margin-bottom: 3px; display: block; }
#profilePage .info-item .info-value { font-size: 15px; color: #fff; font-weight: 500; }

#profilePage .contact-methods { display: flex; gap: 10px; margin-top: 5px; }
#profilePage .contact-btn { padding: 8px 15px; }

#profilePage .services-container { display: flex; flex-wrap: wrap; gap: 10px; }
#profilePage .service-tag { background: #3e3e3e; color: #ddd; padding: 6px 12px; border-radius: 5px; font-size: 14px; }

#profilePage .description-box {
    background: #2a2a2e;
    padding: 20px;
    border-radius: 8px;
    line-height: 1.7;
    color: #ccc;
    white-space: pre-wrap;
}

@media (max-width: 900px) {
    #profilePage .profile-content { grid-template-columns: 1fr; }
    #profilePage .profile-photos { margin-bottom: 30px; }
}

/* Header Styles */
header {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

h1 {
    font-size: clamp(24px, 5vw, 36px);
    letter-spacing: 2px;
    margin: 10px 0;
}

.language-menu {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-menu select {
    padding: 8px 12px;
    background-color: var(--primary-color);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

/* Navigation Menu */
#menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 10px;
    background-color: #111;
    position: sticky;
    top: 0;
    z-index: 100;
}

#menu a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
}

#menu a:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Main Container */
.container {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Slider Styles */
.sliders-container {
    position: relative;
    margin: 30px 0;
    overflow: hidden;
}

/* ახალი სლაიდერის სტილები */
.slider {
    display: flex;
    gap: 15px;
    overflow: hidden;
    position: relative;
    
}

.card {
    flex: 0 0 calc(20% - 12px); /* 5 ბარათი desktop-ზე */
    height: 340px; /* მაღალი ბარათები */
    min-width: 220px;
    background-color: var(--secondary-color);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    scroll-snap-align: start;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .card {
        flex: 0 0 calc(50% - 10px); /* 2 ბარათი ტელეფონზე */
    }
}



/* Card Styles */
.card {
    width: 250px;
    min-width: 250px;
    height: 210px;
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    scroll-snap-align: start;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Slider Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    border: none;
    transition: all 0.3s;
}

.arrow:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.left-arrow { left: 10px; }
.right-arrow { right: 10px; }

/* Categories */
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.category {
    padding: 12px 24px;
    background-color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    font-size: 15px;
}

.category:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.top { background-color: gold; color: black; }
.vip { background-color: silver; color: black; }
.new { background-color: white; color: black; }
.online { background-color: red; }
.green { background-color: green; }

/* Card Container */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* Quick Search */
.quick-search-container {
    margin: 20px 0;
    width: 100%;
}

#toggleQuickSearchBtn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

#toggleQuickSearchBtn:hover {
    background-color: #a91400;
    transform: translateY(-2px);
}

.quick-search {
    display: none;
    width: 100%;
    max-width: 500px;
    margin: 15px auto;
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
/* === NOTIFICATION TOAST STYLES === */

.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.notification-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-toast.success {
    background-color: #28a745; /* მწვანე */
}

.notification-toast.error {
    background-color: #dc3545; /* წითელი */
}

/* === DYNAMIC TOAST NOTIFICATION STYLES === */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-notification {
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(100%);
    animation: slideInAndOut 5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.toast-notification.success { background-color: #28a745; }
.toast-notification.error { background-color: #dc3545; }

@keyframes slideInAndOut {
    0% { transform: translateX(100%); opacity: 0; }
    15% { transform: translateX(0); opacity: 1; }
    85% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.quick-search.active { display: block; }
.quick-search label { display: block; margin: 15px 0 5px; color: var(--text-color); font-size: 15px; }
.quick-search select, 
.quick-search input { width: 100%; padding: 12px; margin-bottom: 10px; border-radius: 5px; border: 1px solid #444; background-color: #444; color: var(--text-color); font-size: 15px; }
.quick-search button { width: 100%; padding: 12px; margin: 15px 0 5px; background: var(--primary-color); color: var(--text-color); border: none; border-radius: 5px; cursor: pointer; font-size: 16px; transition: all 0.3s; }
.quick-search button:hover { background: #a91400; transform: translateY(-2px); }

/* Modal Styles */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.9); justify-content: center; align-items: center; z-index: 1000; overflow-y: auto; padding: 20px; }
.modal.active { display: flex; }

.modal-content { background-color: var(--secondary-color); padding: 25px; border-radius: 10px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--primary-color) var(--secondary-color); position: relative; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-track { background: var(--secondary-color); }
.modal-content::-webkit-scrollbar-thumb { background-color: var(--primary-color); border-radius: 4px; }
.modal-content h2, .modal-content h3 { margin-bottom: 20px; color: var(--primary-color); text-align: center; }
.modal-content label { display: block; margin: 15px 0 5px; color: var(--text-color); font-size: 15px; }
.modal-content input, .modal-content select, .modal-content textarea { width: 100%; padding: 12px; margin-bottom: 5px; border-radius: 5px; border: 1px solid #444; background-color: #444; color: var(--text-color); font-size: 15px; }
.modal-content textarea { min-height: 100px; resize: vertical; }
.modal-content button {  padding: 12px; margin: 2px 0 10px; background-color: var(--primary-color); color: var(--text-color); border: none; border-radius: 5px; cursor: pointer; font-size: 16px; transition: all 0.3s; }
.modal-content button:hover { background-color: #a91400; transform: translateY(-2px); }

.close-modal { position: absolute; top: 10px; right: 10px; font-size: 28px; cursor: pointer; color: var(--text-color); background: none; border: none; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s; }
.close-modal:hover { background-color: rgba(255,255,255,0.1); transform: rotate(90deg); }

.checkbox-group { display: flex; gap: 15px; flex-wrap: wrap; margin: 10px 0; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; margin: 0; cursor: pointer; padding: 5px; border-radius: 4px; transition: all 0.2s; }
.checkbox-group label:hover { background-color: rgba(255,255,255,0.1); }
.input-group { display: flex; gap: 10px; margin: 5px 0; align-items: center; }
.input-group input, .input-group select { flex: 1; }
.service-table { width: 100%; border-collapse: collapse; margin: 15px 0; }
.service-table td { padding: 8px 5px; text-align: left; border: none; font-size: 14px; vertical-align: middle; }

input[type="checkbox"] { width: 18px; height: 18px; margin: 0 8px 0 0; appearance: none; -webkit-appearance: none; border: 2px solid var(--primary-color); border-radius: 4px; cursor: pointer; position: relative; transition: all 0.2s; }
input[type="checkbox"]:checked { background-color: var(--primary-color); }
input[type="checkbox"]:checked::after { content: "✓"; color: white; font-size: 12px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
input[type="range"] { width: 100%; margin: 15px 0; height: 8px; -webkit-appearance: none; background: #3a3a3a; border-radius: 5px; outline: none; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: var(--primary-color); border-radius: 50%; cursor: pointer; transition: all 0.2s; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type="file"] { padding: 10px; background: #3a3a3a; border: 2px dashed var(--primary-color); width: 100%; border-radius: 5px; }
.range-values { display: flex; justify-content: space-between; font-size: 14px; margin-top: 5px; color: #aaa; }

/* Profile Page Styles */
#profilePage { display: none; }
.profile-container { max-width: 1000px; margin: 20px auto; background: var(--secondary-color); border-radius: 10px; overflow: hidden; box-shadow: 0 0 20px rgba(0,0,0,0.5); }
.profile-header { background-color: var(--primary-color); padding: 25px 20px; text-align: center; position: relative; }
.profile-name { font-size: clamp(24px, 3vw, 32px); margin: 0; font-weight: bold; color: white; }
.profile-status { display: inline-block; padding: 5px 15px; border-radius: 15px; font-size: 16px; font-weight: bold; margin-top: 10px; }
.status-top { background-color: gold; color: black; }
.status-vip { background-color: silver; color: black; }
.status-new { background-color: white; color: black; }
.status-online { background-color: #00ff00; color: black; }
.status-up { background-color: var(--primary-color); color: white; }
.status-green { background-color: green; color: white; }

.profile-content { display: flex; padding: 20px; flex-wrap: wrap; }
.profile-photos { width: 350px; margin-right: 20px; position: relative; flex-grow: 1; min-width: 300px; }
.main-photo { width: 100%; height: 350px; background-color: #3a3a3a; border-radius: 8px; overflow: hidden; margin-bottom: 15px; cursor: pointer; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.main-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.main-photo:hover img { transform: scale(1.02); }

.thumbnail-container { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.photo-thumbnail { width: 70px; height: 70px; background-color: #3a3a3a; border-radius: 5px; overflow: hidden; cursor: pointer; transition: all 0.2s; flex-shrink: 0; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.photo-thumbnail:hover { transform: scale(1.1); box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.photo-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.slider-nav { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); z-index: 1; pointer-events: none; }
.slider-arrow { background-color: rgba(209, 27, 0, 0.7); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; margin: 0 15px; transition: all 0.3s; backdrop-filter: blur(2px); pointer-events: all; }
.slider-arrow:hover { background-color: rgba(209, 27, 0, 0.9); transform: scale(1.1); }

/* Lightbox Styles */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.95); z-index: 1100; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.lightbox.active { display: flex; opacity: 1; }
.lightbox-content { position: relative; max-width: 90%; max-height: 90%; text-align: center; }
.lightbox-img { max-width: 100%; max-height: 80vh; border-radius: 8px; box-shadow: 0 0 20px rgba(0,0,0,0.8); transform: scale(0.95); transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0; }
.lightbox.active .lightbox-img { transform: scale(1); opacity: 1; }
.lightbox-close { position: absolute; top: 15px; right: 15px; color: white; font-size: 32px; background: rgba(0,0,0,0.6); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; border: none; z-index: 1003; cursor: pointer; }
.lightbox-close:hover { background: rgba(255,255,255,0.1); transform: rotate(90deg); }
.lightbox-nav { position: absolute; top: 0; left: 0; height: 100%; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0; pointer-events: none; z-index: 1001; }
.lightbox-arrow { pointer-events: all; background-color: rgba(0,0,0,0.6); color: white; border: none; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 24px; margin: 0 10px; transition: all 0.3s; z-index: 1002; }
.lightbox-arrow:hover { background-color: rgba(209, 27, 0, 0.9); transform: scale(1.1); }

/* Profile Info Section */
.profile-info { flex: 1; min-width: 300px; padding: 0 10px; }
.info-section { margin-bottom: 25px; }
.info-title { color: var(--primary-color); font-size: 20px; margin-bottom: 15px; border-bottom: 1px solid #444; padding-bottom: 8px; }
.info-row { display: flex; margin-bottom: 12px; flex-wrap: wrap; }
.info-label { width: 150px; font-weight: bold; color: #aaa; flex-shrink: 0; }
.info-value { flex: 1; min-width: 200px; }
.phone-number { color: white; font-weight: bold; text-decoration: none; transition: color 0.2s; }
.phone-number:hover { color: var(--primary-color); text-decoration: underline; }
.services-container { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 15px; }
.service-tag { background-color: #444; padding: 8px 15px; border-radius: 15px; font-size: 14px; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }

.contact-methods { display: flex; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.contact-btn { background-color: #333; color: white; border: none; padding: 10px 20px; border-radius: 5px; font-weight: bold; cursor: pointer; display: flex; align-items: center; gap: 8px; text-decoration: none; transition: all 0.3s; font-size: 15px; }
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.whatsapp-btn { background-color: #25D366; }
.viber-btn { background-color: #7360F2; }
.telegram-btn { background-color: #0088cc; }

.profile-footer { padding: 20px; background-color: #333; text-align: center; }
.edit-profile-btn, .back-btn { background-color: var(--primary-color); color: white; border: none; padding: 12px 25px; border-radius: 5px; cursor: pointer; transition: all 0.3s; font-size: 16px; font-weight: bold; display: inline-flex; align-items: center; gap: 8px; margin: 5px; }
.edit-profile-btn:hover, .back-btn:hover { background-color: #a91400; transform: translateY(-2px); }

.admin-controls { display: none; justify-content: center; gap: 15px; margin-top: 20px; flex-wrap: wrap; }
.admin-btn { padding: 8px 15px; border-radius: 5px; border: none; cursor: pointer; font-weight: bold; transition: all 0.3s; font-size: 14px; }
.admin-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.up-btn { background-color: var(--primary-color); color: white; }
.top-btn { background-color: gold; color: black; }
.vip-btn { background-color: silver; color: black; }
.new-btn { background-color: white; color: black; }
.online-btn { background-color: red; color: white; }
.green-btn { background-color: green; color: white; }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .profile-content { flex-direction: column; }
    .profile-photos { width: 100%; margin-right: 0; margin-bottom: 30px; }
    .main-photo { height: 400px; }
}
@media (max-width: 768px) {
    header h1 { font-size: 28px; padding-top: 10px; }
    .language-menu { position: static; text-align: center; margin: 15px 0 0; }
    #menu { gap: 8px; padding: 10px 5px; }
    #menu a { padding: 10px 15px; font-size: 14px; }
    .slider { gap: 10px; padding: 10px 5px; }
    .card { width: 220px; min-width: 220px; height: 140px; font-size: 16px; }
    .categories { gap: 10px; margin: 20px 0; }
    .category { padding: 10px 15px; font-size: 14px; }
    .modal-content { padding: 20px 15px; }
    .main-photo { height: 350px; }
    .photo-thumbnail { width: 60px; height: 60px; }
    .slider-arrow { width: 35px; height: 35px; font-size: 18px; }
    .lightbox-img { max-height: 70vh; }
    .info-row { flex-direction: column; gap: 5px; }
    .info-label { width: 100%; }
}
@media (max-width: 480px) {
    .card-container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .card { width: 100%; min-width: unset; height: 120px; font-size: 15px; }
    .main-photo { height: 300px; }
    .photo-thumbnail { width: 50px; height: 50px; }
    .profile-name { font-size: 22px; }
    .profile-status { font-size: 14px; padding: 4px 12px; }
}