/* iOS-style Christmas Theme */
:root {
    --ios-red: #ff3b30;
    --ios-green: #34c759;
    --ios-blue: #007aff;
    --ios-orange: #ff9500;
    --ios-purple: #af52de;
    --ios-pink: #ff2d92;
    --ios-yellow: #ffcc00;
    --ios-gray: #8e8e93;
    --ios-light-gray: #f2f2f7;
    --ios-dark-gray: #1c1c1e;
    --ios-background: #f2f2f7;
    --ios-card: #ffffff;
    --ios-text: #000000;
    --ios-text-secondary: #8e8e93;
    --ios-border: #c6c6c8;
    --ios-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --ios-shadow-large: 0 4px 12px rgba(0, 0, 0, 0.15);
    --ios-blur: blur(20px);
    --ios-primary: #007aff;
    --ios-secondary: #5856d6;
    --ios-success: #34c759;
    --ios-warning: #ff9500;
    --ios-danger: #ff3b30;
    --ios-info: #5ac8fa;
    --christmas-red: #ff3b30;
    --christmas-green: #34c759;
    --christmas-gold: #ffcc00;
    --border-light: #e9ecef;
}

body {
    background: url('seba.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: -1;
}

/* Cover Banner with Header */
.cover-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.cover-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cover-banner p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-weight: 400;
}

/* Login Panel with seba.jpg heading */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Keep card container stable, only animate content */
.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--ios-blur);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('seba.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.95;
    z-index: -1;
    border-radius: 20px;
}

/* Animate only the content inside */
.login-header, .login-body {
    transition: opacity 0.3s ease;
}

.content-transition {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-transition.loaded {
    opacity: 1;
}

.login-header {
    background: transparent;
    padding: 0.5rem 1.25rem 0.5rem 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-header h2 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.login-body {
    padding: 1.25rem;
    position: relative;
    background: transparent;
    backdrop-filter: blur(0px);
}

.login-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
    border-radius: 0 0 20px 20px;
}

.login-body h4 {
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 4px 16px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.login-body .text-center p {
    color: white !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 3px 12px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.login-body p {
    color: white !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 3px 12px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

/* Form improvements */
.form-control, .form-select {
    border: 2px solid var(--ios-border);
    border-radius: 16px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3px);
    font-family: inherit;
    font-weight: 500;
    min-height: 48px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-control:focus, .form-select:focus {
    border-color: var(--ios-primary);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
    background: white;
    outline: none;
    transform: translateY(-1px);
}

/* Form row improvements */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
    width: 100%;
}

.form-row > * {
    padding: 0 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Input group improvements */
.input-group {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.input-group-text {
    background: var(--christmas-red);
    color: white !important;
    border: 2px solid var(--christmas-red);
    border-radius: 16px 0 0 16px;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input-group .form-control {
    border-radius: 0 16px 16px 0;
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
}

/* Button group improvements */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.btn-group .btn {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

/* Modal improvements for better containment */
.modal-dialog {
    max-width: 90vw;
    margin: 1.75rem auto;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    max-width: 100%;
    overflow: hidden;

  
}

.modal-header {
    border-bottom: 1px solid var(--ios-border);
    padding: 1.5rem 2rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.modal-body {
    padding: 2rem;
    overflow-x: auto;
    max-width: 100%;
 
   
}

.modal-footer {
    border-top: 1px solid var(--ios-border);
    padding: 1.5rem 2rem;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ios-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Alert improvements for better containment */
.alert {
    border-radius: 16px;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.alert-success {
    background: rgba(52, 199, 89, 0.1);
    color: #2db84d;
    border-left: 4px solid var(--ios-success);
}

.alert-danger {
    background: rgba(255, 59, 48, 0.1);
    color: #e03535;
    border-left: 4px solid var(--ios-danger);
}

.alert-warning {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
    border-left: 4px solid #ff9500;
}

/* Table improvements */
.table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 1rem;
    border-bottom: 1px solid var(--ios-border);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card improvements */
.card {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* List group improvements */
.list-group {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid var(--ios-border);
    padding: 1rem 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Badge improvements */
.badge {
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Tooltip improvements */
.tooltip {
    max-width: 200px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tooltip-inner {
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    max-width: 200px;
}

/* Popover improvements */
.popover {
    border-radius: 16px;
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    overflow: hidden;
}

.popover-header {
    border-bottom: 1px solid var(--ios-border);
    border-radius: 16px 16px 0 0;
    padding: 1rem 1.5rem;
}

.popover-body {
    padding: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Present items improvements */
.present-item {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    padding: 1.25rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.present-item:hover {
    background: #fff;
    border-color: var(--ios-primary);
    box-shadow: 0 4px 16px rgba(0,122,255,0.08);
    transform: translateY(-2px);
}

.present-item .row {
    align-items: center;
    width: 100%;
    margin: 0;
}

.present-item .col-md-1,
.present-item .col-md-2,
.present-item .col-md-3,
.present-item .col-md-4 {
    padding: 0 0.75rem;
    overflow: hidden;
}

.present-item .form-check {
    display: flex;
    justify-content: center;
    margin: 0;
}

.present-item .form-check-input {
    margin: 0;
    cursor: pointer;
    width: 1.2rem;
    height: 1.2rem;
}

.present-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ios-text);
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
    word-break: break-word;
}

.present-comments {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    line-height: 1.5;
    word-break: break-word;
}

.present-date {
    font-size: 0.85rem;
    color: var(--ios-text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* Share buttons improvements */
.share-buttons {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.share-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-decoration: none;
}

.share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-color: #25d366;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

.share-btn.messenger {
    background: rgba(0, 132, 255, 0.1);
    color: #0084ff;
    border-color: #0084ff;
}

.share-btn.messenger:hover {
    background: #0084ff;
    color: white;
}

.share-btn.email {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border-color: #6c757d;
}

.share-btn.email:hover {
    background: #6c757d;
    color: white;
}

/* Button group improvements */
.btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.btn-group-vertical .btn {
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-group-vertical .btn:first-child {
    border-radius: 8px 8px 0 0;
}

.btn-group-vertical .btn:last-child {
    border-radius: 0 0 8px 8px;
}

.btn-group-vertical .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

/* Special case for single button in group */
.btn-group-vertical .btn:only-child {
    border-radius: 8px;
}

/* New Sort System */
.sort-container {
    position: relative;
    display: inline-block;
}

.sort-btn {
    background: var(--ios-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
    height: 48px;
    margin-top: 0.5rem;
}

.sort-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.sort-btn:active {
    transform: translateY(0);
}

.sort-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    z-index: 1000;
    margin-top: 8px;
    display: none;
    overflow: hidden;
}

.sort-menu.show {
    display: block;
}

.sort-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.sort-item:last-child {
    border-bottom: none;
}

.sort-item:hover {
    background-color: #f8f9fa;
}

.sort-item.active {
    background-color: var(--ios-primary);
    color: white;
}

.sort-item i {
    width: 16px;
    text-align: center;
}

.sort-option {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--ios-border);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sort-option:last-child {
    border-bottom: none;
}

.sort-option:hover {
    background: var(--ios-light-gray);
    transform: translateX(4px);
}

.sort-option.selected {
    background: var(--ios-primary);
    color: white;
}

/* Search controls improvements */
.search-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.search-input-container {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 100%;
}

.clear-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--ios-gray);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: none;
    z-index: 10;
}

.clear-search-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--ios-danger);
}

.clear-search-btn.visible {
    display: block;
}

.search-input {
    border: 2px solid var(--ios-border);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--ios-card);
    flex: 1;
    min-width: 200px;
    max-width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-top: 0.5rem;
    padding-right: 40px; /* Make room for clear button */
}

.sort-button {
    background: var(--ios-primary);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.25);
    height: 48px;
    box-sizing: border-box;
    margin-top: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: fit-content;
    cursor: pointer;
}

.sort-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.35);
}

.sort-button:active {
    transform: translateY(0);
}

/* Buttons with improved styling */
.btn {
    border-radius: 16px;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-danger {
    background: var(--ios-danger);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.25);
}

.btn-danger:hover {
    background: #e03535;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.35);
}

.btn-success {
    background: var(--ios-success);
    color: white;
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.25);
}

.btn-success:hover {
    background: #2db84d;
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.35);
}

.btn-rezerwacje {
    background: var(--ios-success);
    box-shadow: 0 6px 20px rgba(255, 217, 0, 0.806);
}
.btn-outline-danger {
    border: 2px solid var(--ios-danger);
    color: var(--ios-danger);
    background: transparent;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.15);
}

.btn-outline-danger:hover {
    background: var(--ios-danger);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.25);
}

/* Share buttons */
.share-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.messenger {
    background: #0084ff;
    color: white;
}

.share-btn.email {
    background: var(--ios-gray);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* Progress bars */
.progress {
    height: 8px;
    border-radius: 4px;
    background: var(--ios-light-gray);
    overflow: hidden;
}

.progress-bar {
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .navbar-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        flex: 1;
        text-align: center;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0 0.25rem;
        white-space: nowrap;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.3);
        font-weight: 600;
    }
    
    .navbar-nav .btn {
        flex: 1;
        margin: 0 0.25rem;
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .navbar .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Mobile sharing buttons */
    .share-buttons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .share-buttons .share-btn {
        flex: 1;
        min-width: 0;
        max-width: 120px;
        margin: 0.25rem 0;
    }
}

/* Ensure all navigation buttons have text */
.navbar-nav .nav-link i,
.navbar-nav .btn i {
    margin-right: 0.5rem;
}

/* Hide navbar brand on mobile to save space */
@media (max-width: 576px) {
    .navbar-brand {
        display: none;
    }
    
    .navbar-nav {
        margin-top: 0;
    }
}

/* Snowfall effect - only in login panels */
.login-card .snowflake {
    position: absolute;
    top: -100px;
    z-index: 0; /* Behind form elements */
    user-select: none;
    cursor: default;
    animation: fall linear infinite;
    color: white;
    font-size: 0.8em;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
    opacity: 0.6;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.6;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(400px) rotate(360deg);
        opacity: 0;
    }
}

/* Different snowflake positions and slower speeds */
.login-card .snowflake:nth-child(1) { left: 10%; animation-duration: 20s; animation-delay: 0s; }
.login-card .snowflake:nth-child(2) { left: 20%; animation-duration: 25s; animation-delay: 5s; }
.login-card .snowflake:nth-child(3) { left: 30%; animation-duration: 30s; animation-delay: 10s; }
.login-card .snowflake:nth-child(4) { left: 40%; animation-duration: 22s; animation-delay: 15s; }
.login-card .snowflake:nth-child(5) { left: 50%; animation-duration: 28s; animation-delay: 20s; }
.login-card .snowflake:nth-child(6) { left: 60%; animation-duration: 24s; animation-delay: 25s; }
.login-card .snowflake:nth-child(7) { left: 70%; animation-duration: 32s; animation-delay: 30s; }
.login-card .snowflake:nth-child(8) { left: 80%; animation-duration: 20s; animation-delay: 35s; }
.login-card .snowflake:nth-child(9) { left: 90%; animation-duration: 26s; animation-delay: 40s; }
.login-card .snowflake:nth-child(10) { left: 15%; animation-duration: 30s; animation-delay: 45s; }
.login-card .snowflake:nth-child(11) { left: 25%; animation-duration: 22s; animation-delay: 50s; }
.login-card .snowflake:nth-child(12) { left: 35%; animation-duration: 28s; animation-delay: 55s; }
.login-card .snowflake:nth-child(13) { left: 45%; animation-duration: 24s; animation-delay: 60s; }
.login-card .snowflake:nth-child(14) { left: 55%; animation-duration: 32s; animation-delay: 65s; }
.login-card .snowflake:nth-child(15) { left: 65%; animation-duration: 20s; animation-delay: 70s; }
.login-card .snowflake:nth-child(16) { left: 75%; animation-duration: 26s; animation-delay: 75s; }
.login-card .snowflake:nth-child(17) { left: 85%; animation-duration: 30s; animation-delay: 80s; }
.login-card .snowflake:nth-child(18) { left: 95%; animation-duration: 22s; animation-delay: 85s; }
.login-card .snowflake:nth-child(19) { left: 5%; animation-duration: 28s; animation-delay: 90s; }
.login-card .snowflake:nth-child(20) { left: 100%; animation-duration: 24s; animation-delay: 95s; }

/* iOS-style Presents container */
.presents-container {
    display: flex;
    flex-direction: column;
}

.present-item {
    order: 0;
      transition: all .5s ease-in-out;
}

.present-item.checked {
    order: 1;
      transition: all .5s ease-in-out;
    
  
}

/* iOS-style filter dropdown */
.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ios-card);
    border: 1px solid var(--ios-border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.filter-result-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--ios-border);
}

.filter-result-item:last-child {
    border-bottom: none;
}

.filter-result-item:hover {
    background: var(--ios-light-gray);
}

.filter-result-item.selected {
    background: var(--ios-primary);
    color: white;
}

/* Ensure form elements are above snowflakes */
.login-header, .login-body, .input-group, .btn, .form-control {
    position: relative;
    z-index: 2;
}

/* Style dla opcji "Dodaj nową osobę" w dropdownie */
.form-select option.text-primary {
    color: var(--ios-primary) !important;
    font-weight: 500;
    background-color: rgba(0, 122, 255, 0.1);
}

.form-select option.text-primary:hover {
    background-color: rgba(0, 122, 255, 0.2);
}

/* Recipients page improvements */
.recipient-item {
    background: var(--ios-card);
    border: 1px solid var(--ios-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.recipient-item:hover {
    border-color: var(--ios-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: none;
}

.recipient-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ios-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipient-item .btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.recipient-item .btn-group-vertical .btn {
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipient-item .btn-group-vertical .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.recipient-item .btn-outline-primary {
    border: 2px solid var(--ios-primary);
    color: var(--ios-primary);
    background: rgba(0, 122, 255, 0.05);
}

.recipient-item .btn-outline-primary:hover {
    background: var(--ios-primary);
    color: white;
    border-color: var(--ios-primary);
}

.recipient-item .btn-outline-danger {
    border: 2px solid var(--ios-danger);
    color: var(--ios-danger);
    background: rgba(255, 59, 48, 0.05);
}

.recipient-item .btn-outline-danger:hover {
    background: var(--ios-danger);
    color: white;
    border-color: var(--ios-danger);
}

.recipient-item .btn-outline-success {
    border: 2px solid var(--ios-success);
    color: var(--ios-success);
    background: rgba(52, 199, 89, 0.05);
}

.recipient-item .btn-outline-success:hover {
    background: var(--ios-success);
    color: white;
    border-color: var(--ios-success);
}

.recipient-item .btn-outline-warning {
    border: 2px solid #ff9500;
    color: #ff9500;
    background: rgba(255, 149, 0, 0.05);
}

.recipient-item .btn-outline-warning:hover {
    background: #ff9500;
    color: white;
    border-color: #ff9500;
}

/* Profile picture improvements */
.profile-picture-wrapper {
    position: relative;
    display: inline-block;
}

/* Badge removed - no longer showing checkmark on identified user profile pictures */

.profile-picture-wrapper.identified img,
.profile-picture-wrapper.identified {
    border: none !important;
    box-shadow: none !important;
}

/* Progress bar improvements */
.recipient-item .progress {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.recipient-item .progress-bar {
    background: var(--ios-success);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Badge improvements */
.recipient-item .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.recipient-item .badge.bg-success {
    background: rgba(52, 199, 89, 0.1) !important;
    color: var(--ios-success) !important;
    border: 1px solid var(--ios-success);
}

/* Alert improvements in recipient items */
.recipient-item .alert {
    border-radius: 12px;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.recipient-item .alert-warning {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
    border-left: 3px solid #ff9500;
}

/* Presents preview improvements */
.presents-preview {
    margin-top: 1rem;
}

.presents-preview .present-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.presents-preview .present-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: none;
    box-shadow: none;
}

.presents-preview .present-item.checked {
    opacity: 0.6;
    background: rgba(52, 199, 89, 0.05);
}

/* Responsive improvements for recipients */
@media (max-width: 768px) {
    .recipient-item {
        padding: 1rem;
    }
    
    .recipient-item .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .recipient-item .col-md-2,
    .recipient-item .col-md-4,
    .recipient-item .col-md-6 {
        width: 100%;
        text-align: center;
    }
    
    .recipient-item .btn-group-vertical {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .recipient-item .btn-group-vertical .btn {
        flex: 1;
        max-width: 180px;
    }
    
    .recipient-name {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .profile-picture-wrapper {
        margin: 0 auto;
    }
}

/* Container improvements */
.container {
    max-width: 1200px;
    padding: 0 1.5rem;
    margin: 0 auto;
    overflow-x: hidden;
}

.container.mt-4 {
    margin-top: 2rem !important;
}

/* Checkbox improvements */
.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 6px;
    border: 2px solid var(--ios-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--ios-primary);
    border-color: var(--ios-primary);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
    border-color: var(--ios-primary);
}

/* Spinner improvements */
.spinner-border {
    width: 2rem;
    height: 2rem;
    border-width: 0.2rem;
    color: var(--ios-primary);
}

/* Text improvements */
.text-muted {
    color: var(--ios-text-secondary) !important;
    font-weight: 500;
}

/* Link improvements */
a {
    color: var(--ios-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Recipient link improvements */
.recipient-link {
    color: var(--ios-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    background: rgba(0, 122, 255, 0.1);
}

.recipient-link:hover {
    color: #0056b3;
    background: rgba(0, 122, 255, 0.15);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Comment link improvements */
.comment-link {
    color: var(--ios-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.125rem 0.25rem;
    border-radius: 4px;
    background: rgba(0, 122, 255, 0.1);
    font-size: 0.85rem;
}

.comment-link:hover {
    color: #0056b3;
    background: rgba(0, 122, 255, 0.15);
    text-decoration: none;
    transform: translateY(-1px);
}

.comment-link:visited {
    color: var(--ios-primary);
}

/* Profile picture improvements */
.profile-picture-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-picture-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-picture-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-picture-wrapper.identified img,
.profile-picture-wrapper.identified {
    border: none !important;
    box-shadow: none !important;
}

/* Certification badge improvements */
.cert-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--christmas-green), #2db84d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
    border: 2px solid white;
}

.cert-badge i {
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Global box-sizing fix */
* {
    box-sizing: border-box;
}

/* Row and column improvements */
.row {
    margin: 0;
    width: 100%;
}

.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-8 {
    padding: 0 0.75rem;
    overflow: hidden;
}

/* iOS-style Main Content Cards */
.main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--ios-blur);
    border: none;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.main-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.main-card .card-header {
    background: var(--christmas-red);
    backdrop-filter: var(--ios-blur);
    border-bottom: 1px solid var(--ios-border);
    padding: 0.75rem 1.5rem;
    border-radius: 20px 20px 0 0;
    min-height: 56px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.main-card .card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-card .card-body {
    padding: 2rem;
    width: 100%;
    overflow-x: auto;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--ios-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    width: 100%;
    overflow: hidden;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--christmas-red) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ios-text) !important;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 12px;
    margin: 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link:hover {
    color: var(--christmas-red) !important;
    background: rgba(255, 59, 48, 0.1);
}

.nav-link.active {
    color: var(--christmas-red) !important;
    font-weight: 600;
    background: rgba(255, 59, 48, 0.15);
}

/* Form labels and spacing */
.form-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ios-text);
    margin-bottom: 0.75rem;
    display: block;
    width: 100%;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
}

/* iOS-style Flat Design Submit Button */
.btn-login {
    background: var(--christmas-red);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
    backdrop-filter: blur(3px);
}

.btn-login:hover {
    background: #d70015;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

/* Flat Design Link Buttons */
.btn-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.btn-link:hover {
    color: white !important;
    background: rgba(255, 59, 48, 0.2);
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* iOS-style Flat Design Icons */
.login-card .fa-gift {
    font-size: 2rem;
    color: var(--christmas-red);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Flat Design Input Groups with red icons */
.input-group-text i {
    color: white !important;
}

/* Button group improvements for recipients */
.recipient-item .btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.recipient-item .btn-group-vertical .btn {
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipient-item .btn-group-vertical .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Fix for single button or first/last button in group */
.recipient-item .btn-group-vertical .btn:first-child {
    border-radius: 12px;
}

.recipient-item .btn-group-vertical .btn:last-child {
    border-radius: 12px;
}

.recipient-item .btn-group-vertical .btn:only-child {
    border-radius: 12px;
}

/* Identification buttons improvements */
.recipient-item .btn-outline-success.btn-sm,
.recipient-item .btn-outline-warning.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    min-height: 32px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipient-item .btn-outline-success.btn-sm:hover,
.recipient-item .btn-outline-warning.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Ensure identification buttons are smaller than action buttons */
.recipient-item .mb-3 .btn {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

/* Responsive adjustments for identification buttons */
@media (max-width: 768px) {
    .recipient-item .mb-3 .btn {
        max-width: 100%;
        width: 100%;
    }
}

/* Override Bootstrap btn-group-vertical styles for recipients */
.recipient-item .btn-group-vertical > .btn {
    border-radius: 12px !important;
    margin-bottom: 0.5rem;
}

.recipient-item .btn-group-vertical > .btn:first-child {
    border-radius: 12px !important;
}

.recipient-item .btn-group-vertical > .btn:last-child {
    border-radius: 12px !important;
    margin-bottom: 0;
}

.recipient-item .btn-group-vertical > .btn:only-child {
    border-radius: 12px !important;
    margin-bottom: 0;
}

/* Ensure proper spacing between buttons */
.recipient-item .btn-group-vertical > .btn:not(:last-child) {
    margin-bottom: 0.5rem;
}

/* Better alignment for identification buttons next to name */
.recipient-item .d-flex.align-items-center .btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
    min-height: 32px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipient-item .d-flex.align-items-center .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Ensure name and button are properly aligned */
.recipient-item .d-flex.align-items-center {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.recipient-item .recipient-name {
    flex: 1;
    min-width: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .recipient-item .d-flex.align-items-center {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .recipient-item .d-flex.align-items-center .btn {
        align-self: flex-start;
    }
    
    /* Przyciski profilu na całą szerokość w wersji mobilnej */
    .recipient-item .btn-group-vertical {
        width: 100%;
    }
    
    .recipient-item .btn-group-vertical .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Present list action buttons improvements */
.present-item .btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.present-item .btn-group-vertical .btn {
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.present-item .btn-group-vertical .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.present-item .btn-group-vertical .btn:first-child {
    border-radius: 8px 8px 0 0;
}

.present-item .btn-group-vertical .btn:last-child {
    border-radius: 0 0 8px 8px;
}

.present-item .btn-group-vertical .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.present-item .btn-group-vertical .btn:only-child {
    border-radius: 8px;
}

/* Slide down effect for checked presents */
.present-item.checked {
    opacity: 0.7;
    background: rgba(128, 128, 128, 0.1);
    border-color: rgba(128, 128, 128, 0.3);
    transition: all 0.5s ease;
 
}

.present-item.checked .present-title {
    text-decoration: line-through;
    color: var(--ios-text-secondary);
}

/* Animation for checking/unchecking presents */
.present-item {
    transition: all 0.5s ease;

}

.present-item.checking {
     transition: all .5s ease-in-out;
    opacity: 0.8;
}

.present-item.unchecking {
    transition: all .5s ease-in-out;
    opacity: 0.8;
}

/* Share buttons with text improvements */
.share-buttons .share-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.share-buttons .share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Edit button styling to match delete button */
.btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Ensure consistent styling for edit and delete buttons in presents list */
.present-item .btn-outline-primary,
.present-item .btn-outline-danger {
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.present-item .btn-outline-primary:hover,
.present-item .btn-outline-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ensure edit and delete buttons are properly aligned to the right */
.present-item .col-md-2.text-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.present-item .btn-group-vertical {
    margin-left: auto;
}

/* Improve button spacing and alignment */
.present-item .btn-group-vertical .btn {
    margin-bottom: 0.25rem;
    min-width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.present-item .btn-group-vertical .btn:last-child {
    margin-bottom: 0;
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .navbar-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        flex: 1;
        text-align: center;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0 0.25rem;
        white-space: nowrap;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.3);
        font-weight: 600;
    }
    
    .navbar-nav .btn {
        flex: 1;
        margin: 0 0.25rem;
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .navbar .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Mobile sharing buttons */
    .share-buttons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .share-buttons .share-btn {
        flex: 1;
        min-width: 0;
        max-width: 120px;
        margin: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .main-card .card-body {
        padding: 1rem;
    }
    
    .main-card .card-header {
        padding: 0.5rem 0.75rem;
    }
    
    .main-card .card-header h3 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-control, .form-select {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Ensure all navigation buttons have text */
.navbar-nav .nav-link i,
.navbar-nav .btn i {
    margin-right: 0.5rem;
}

/* Hide navbar brand on mobile to save space */
@media (max-width: 576px) {
    .navbar-brand {
        display: none;
    }
    
    .navbar-nav {
        margin-top: 0;
    }
}

/* Mobile responsiveness for form fields */
@media (max-width: 768px) {
    .col-md-4 {
        width: 100% !important;
    }
    
    .col-md-2 {
        width: 100% !important;
        margin-bottom: 1rem;
    }
    
    /* Ensure buttons are properly sized on mobile */
    .btn-group-vertical .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Make share buttons stack vertically on mobile */
    .share-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons .btn {
        width: 100%;
    }
    
    /* Adjust present item layout on mobile */
    .present-item .row {
        flex-direction: column;
    }
    
    .present-item .col-md-1,
    .present-item .col-md-2,
    .present-item .col-md-3 {
        width: 100% !important;
        margin-bottom: 0.5rem;
    }
    
    .present-item .text-end {
        text-align: center !important;
    }
    
    .present-item .btn-group-vertical {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .present-item .btn-group-vertical .btn {
        margin-bottom: 0;
    }
}

/* Progress display for identified users */
.progress-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.progress-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(#28a745 0deg, #28a745 calc(var(--progress, 0) * 1%), #e9ecef calc(var(--progress, 0) * 1%), #e9ecef 100%);
    border-radius: 50%;
}

.progress-circle::after {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    position: absolute;
}

.progress-circle-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #495057;
    z-index: 1;
    position: relative;
}

.progress-circle-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Identification modal styles */
#identificationModal .modal-dialog {
    max-width: 800px;
}

#identificationModal .card {
    transition: all 0.3s ease;
    cursor: pointer;
}

#identificationModal .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#identificationModal .card.border-warning {
    opacity: 0.7;
}

#identificationModal .card.border-primary {
    border-width: 2px;
}

/* Ensure modal cannot be closed by clicking outside or pressing escape */
#identificationModal[data-bs-backdrop="static"] {
    pointer-events: none;
}

#identificationModal[data-bs-backdrop="static"] .modal-dialog {
    pointer-events: auto;
}

/* Recipient Cards and Purchased Presents */
.recipient-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.recipient-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.recipient-card-header {
    background: linear-gradient(135deg, var(--ios-primary), #0056b3);
    color: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recipient-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.present-count {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    margin-left: auto;
}

.recipient-presents {
    padding: 1rem;
}

.recipient-presents .present-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    padding: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.recipient-presents .present-item:last-child {
    margin-bottom: 0;
}

.recipient-presents .present-item:hover {
    background: white;
    border-color: var(--ios-primary);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.1);
}

/* Purchased Section */
.purchased-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.purchased-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.purchased-title {
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.purchased-count {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    margin-left: auto;
}

.purchased-presents {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Purchased Present Items */
.present-item.purchased {
    opacity: 0.7;
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
}

.present-item.purchased .present-title {
    text-decoration: line-through;
    color: #6c757d;
}

.present-item.purchased .present-comments {
    color: #6c757d;
}

.present-item.purchased .btn {
    opacity: 0.6;
}

.present-item.purchased .btn:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .recipient-card-header {
        padding: 0.75rem 1rem;
    }
    
    .recipient-name {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .present-count {
        margin-left: 0;
    }
    
    .recipient-presents {
        padding: 0.75rem;
    }
    
    .purchased-section {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .purchased-title {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .purchased-count {
        margin-left: 0;
    }
}

/* Recipients page specific styles */
.recipients-page .main-card:not(.col-md-4) {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.recipients-page .main-card .card-header .text-white {
    color: white !important;
}

.recipients-page .main-card .card-header .text-white i {
    color: white !important;
}

/* Compact cards for recipients page */
.recipients-page .compact-card {
    min-height: auto;
    height: auto;
}

.recipients-page .compact-card .card-body {
    padding: 1.5rem;
}

/* Mobile responsive styles for action buttons */
@media (max-width: 575.98px) {
    .recipients-page .compact-card .card-body {
        padding: 0.75rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .recipients-page .compact-card .btn-lg {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        line-height: 1.2;
    }
    
    .recipients-page .compact-card .text-muted {
        font-size: 0.7rem;
    }
    
    .recipients-page .action-btn .btn-text {
        display: none;
    }
    
    .recipients-page .action-btn i {
        margin-right: 0;
        font-size: 1.2rem;
    }
    
    .recipients-page .compact-card .btn-lg {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0 auto;
    }
    
    /* Ensure all three cards have equal height */
    .recipients-page .row .col-4:nth-child(3) .compact-card .card-body {
        padding-bottom: 1.5rem;
    }
    
    /* Mobile styles for recipients list */
    .recipient-item .col-md-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .recipient-item .profile-picture-wrapper {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .recipient-item .btn-group-vertical {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .recipient-item .btn-group-vertical .btn {
        flex: 1;
        max-width: 180px;
    }
    
    .recipient-item .d-flex.align-items-center {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .recipient-item .recipient-name {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    /* Ensure profile picture is centered above name in mobile */
    .recipient-item .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .recipient-item .col-md-6 {
        width: 100%;
        text-align: center;
    }

    /* Center the user icon in mobile view */
    .recipient-item .recipient-name {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .recipient-item .recipient-name i.fas.fa-user {
        margin-right: 0;
    }
}

/* Align the recipients list card with the top containers */
.recipients-page .container > .main-card {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0.5rem;
}

/* Remove bottom margin from action buttons container */
.recipients-page .row:first-child {
    margin-bottom: 0;
}

.recipients-page .row:first-child .col-4 {
    margin-bottom: 0;
}

.recipients-page .row:first-child .compact-card {
    margin-bottom: 0;
}

/* Reservation button styles for recipients page */
.recipients-page .present-item .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.375rem;
}

.recipients-page .present-item .btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.recipients-page .present-item .btn-outline-warning:hover {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
}

.recipients-page .present-item .btn-success {
    background-color: #198754;
    border-color: #198754;
}

.recipients-page .present-item .btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

.recipients-page .present-item .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    opacity: 0.6;
}

/* Improve spacing in present items */
.recipients-page .present-item {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.recipients-page .present-item.checked {
    opacity: 0.6;
    background-color: rgba(255, 255, 255, 0.02);
}

.recipients-page .present-item.checked .present-title {
    text-decoration: line-through;
    color: #6c757d;
}

/* Mobile styles for presents list in recipients page */
@media (max-width: 575.98px) {
    .recipients-page .present-item .d-flex.align-items-center.justify-content-between {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.5rem;
    }
    
    .recipients-page .present-item .d-flex.align-items-center.justify-content-between > .d-flex.align-items-center:last-child {
        justify-content: flex-end;
        width: 100%;
    }
    
    .recipients-page .present-item .w-100.w-md-auto {
        width: 100% !important;
    }
}

@media (min-width: 768px) {
    .recipients-page .present-item .w-100.w-md-auto {
        width: auto !important;
    }
    
    .recipients-page .present-item .d-flex.align-items-center.justify-content-between {
        flex-direction: row !important;
        align-items: center !important;
    }
}

/* Reserved items styling */
.present-item.reserved-by-other {
    opacity: 0.6;
    background-color: #f8f9fa;
    border-left: 3px solid #6c757d;
}

.present-item.reserved-by-other .present-title {
    color: #6c757d;
    text-decoration: line-through;
}

.present-item.reserved-by-other .present-comments {
    color: #adb5bd;
}

.present-item.reserved-by-other .form-check-input {
    opacity: 0.5;
    pointer-events: none;
}

.present-item.reserved-by-other .btn {
    opacity: 0.7;
}

/* Mobile specific styles for reserved items */
@media (max-width: 768px) {
    .present-item.reserved-by-other {
        opacity: 0.5;
    }
    
    .present-item.reserved-by-other .present-title {
        font-size: 0.9rem;
    }
}

/* Perfectly circular avatars and trash icons */
.profile-picture-wrapper {
    position: relative;
    display: inline-block;
}

.profile-picture-wrapper img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.profile-picture-wrapper .fas.fa-user {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
}

/* Trash icon styling */
.recipient-name .btn-outline-danger {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid var(--ios-danger);
    background: var(--ios-danger);
    color: white;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.recipient-name .btn-outline-danger:hover {
    background: #d32f2f;
    border-color: #d32f2f;
    transform: scale(1.1);
}

.recipient-name .btn-outline-danger i {
    font-size: 12px;
}

/* Mobile layout improvements for action buttons */
@media (max-width: 768px) {
    .recipients-page .row .col-4 {
        width: 100% !important;
        margin-bottom: 1rem;
    }
    
    .recipients-page .row .col-4:nth-child(2),
    .recipients-page .row .col-4:nth-child(3) {
        width: 50% !important;
        display: inline-block;
    }
    
    .recipients-page .compact-card .card-body {
        padding: 1rem 0.75rem;
        min-height: auto;
    }
    
    .recipients-page .action-btn {
        width: 100%;
        height: 60px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .recipients-page .action-btn .btn-text {
        display: none;
    }
    
    .recipients-page .action-btn i {
        font-size: 2rem;
        margin: 0;
    }
    
    /* Enhanced mobile button styling */
    .recipients-page .action-btn.btn-primary {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: white;
        border: 2px solid #007bff;
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        border-radius: 12px;
        padding: 1rem;
    }
    
    .recipients-page .action-btn.btn-warning {
        background: linear-gradient(135deg, #ffc107, #e0a800);
        color: #ffffff;
        border: 2px solid #ffc107;
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
        border-radius: 12px;
        padding: 1rem;
    }
    
    .recipients-page .action-btn.btn-success {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        color: white;
        border: 2px solid #28a745;
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        border-radius: 12px;
        padding: 1rem;
    }
}

/* Enhanced self-identification modal with iOS-style cards */
#selfIdentificationModal .modal-dialog {
    max-width: 500px;
}

#selfIdentificationModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--ios-shadow-large);
    overflow: hidden;
}

#selfIdentificationModal .modal-header {
    background: linear-gradient(135deg, var(--ios-primary), var(--ios-secondary));
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

#selfIdentificationModal .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

#selfIdentificationModal .modal-body {
    padding: 2rem;
    text-align: center;
}

#selfIdentificationModal .modal-body p {
    font-size: 1.1rem;
    color: var(--ios-text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

#selfIdentificationModal .modal-footer {
    border-top: none;
    padding: 1.5rem;
    gap: 12px;
}

#selfIdentificationModal .btn {
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

#selfIdentificationModal .btn-secondary {
    background: var(--ios-light-gray);
    color: var(--ios-text);
}

#selfIdentificationModal .btn-secondary:hover {
    background: var(--ios-gray);
    transform: translateY(-1px);
}

#selfIdentificationModal .btn-warning {
    background: var(--ios-warning);
    color: white;
}

#selfIdentificationModal .btn-warning:hover {
    background: #e68900;
    transform: translateY(-1px);
}

#selfIdentificationModal .btn-success {
    background: var(--ios-success);
    color: white;
}

#selfIdentificationModal .btn-success:hover {
    background: #2db84d;
    transform: translateY(-1px);
}

/* Enhanced recipient selection modal */
#recipientSelectionModal .modal-dialog {
    max-width: 600px;
}

#recipientSelectionModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--ios-shadow-large);
}

#recipientSelectionModal .modal-header {
    background: linear-gradient(135deg, var(--ios-success), var(--ios-primary));
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

#recipientSelectionModal .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

#recipientSelectionModal .modal-body {
    padding: 2rem;
}

#recipientSelectionModal .list-group-item {
    border-radius: 12px;
    margin-bottom: 8px;
    border: 2px solid var(--ios-light-gray);
    transition: all 0.3s ease;
    padding: 1rem;
}

#recipientSelectionModal .list-group-item:hover {
    border-color: var(--ios-primary);
    background: var(--ios-light-gray);
    transform: translateY(-1px);
}

#recipientSelectionModal .list-group-item .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    border: none;
}

#recipientSelectionModal .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--ios-shadow);
}

#recipientSelectionModal .form-control {
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
}

#recipientSelectionModal .form-control:focus {
    box-shadow: none;
    border-color: var(--ios-primary);
}

#recipientSelectionModal .btn-success {
    background: var(--ios-success);
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
}

#recipientSelectionModal .btn-success:hover {
    background: #2db84d;
    transform: translateY(-1px);
}

/* Mobile improvements for modals */
@media (max-width: 768px) {
    #selfIdentificationModal .modal-dialog,
    #recipientSelectionModal .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    #selfIdentificationModal .modal-body,
    #recipientSelectionModal .modal-body {
        padding: 1.5rem;
    }
    
    #selfIdentificationModal .modal-footer,
    #recipientSelectionModal .modal-footer {
        padding: 1.5rem;
        flex-direction: column;
    }
    
    #selfIdentificationModal .btn,
    #recipientSelectionModal .btn {
        width: 100%;
        margin-bottom: 8px;
    }
    
    #recipientSelectionModal .list-group-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    #recipientSelectionModal .list-group-item .btn {
        width: 100%;
    }
}

/* Make action button containers clickable */
.recipients-page .compact-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--ios-shadow);
}

.recipients-page .compact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ios-shadow-large);
}

.recipients-page .compact-card .card-body {
    padding: 1.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.recipients-page .action-btn {
    width: 100%;
    border: none;
    background: transparent;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recipients-page .action-btn:hover {
    transform: scale(1.05);
}

.recipients-page .action-btn:focus {
    box-shadow: none;
    outline: none;
}

/* Enhanced button colors and styling */
.recipients-page .action-btn.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: 2px solid #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.recipients-page .action-btn.btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.recipients-page .action-btn.btn-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: 2px solid #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.recipients-page .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.recipients-page .action-btn.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    border-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.recipients-page .action-btn.btn-warning:hover {
    background: linear-gradient(135deg, #e0a800, #d39e00);
    border-color: #e0a800;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.recipients-page .action-btn.btn-success:hover {
    background: linear-gradient(135deg, #1e7e34, #155724);
    border-color: #1e7e34;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
} 

/* Mobile layout improvements */
@media (max-width: 768px) {
    /* Blue container (Add Present) full width on mobile */
    .recipients-page .row:first-child .col-4:first-child {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .recipients-page .row:first-child .col-4:not(:first-child) {
        width: 50%;
    }
    
    /* Ensure equal heights for action button containers */
    .recipients-page .compact-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .recipients-page .compact-card .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Slide animations for present items */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
        z-index: 1;
    }
    to {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
        z-index: 1;
    }
    to {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}






.present-item.reserved-by-me {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.present-item.reserved-by-me .present-title {
    color: #856404;
}

/* Updated slide animations for present items */
@keyframes smoothSlideUp {
    0% {
        transform: translateY(100%);
        opacity: 1;
        z-index: 2;
    }
    80% {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}

@keyframes smoothSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 1;
        z-index: 2;
    }
    80% {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}

@keyframes fadeOutCard {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

.present-item.smooth-slide-up {
    animation: smoothSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.present-item.smooth-slide-down {
    animation: smoothSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.present-item.fading {
    animation: fadeOutCard 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reserved Presents Modal Styles */
.present-item-modal {
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.present-item-modal:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.present-item-modal.checked {
    background-color: #d4edda;
    border-color: #c3e6cb !important;
}

.present-item-modal.checked h6 {
    text-decoration: line-through;
    color: #6c757d;
}

.present-item-modal .form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
}

.present-item-modal .card-header {
    font-weight: 600;
}

.present-item-modal .badge {
    font-size: 0.75rem;
}

/* Animation for items moving between categories */
.present-item-modal.slide-up {
    animation: slideUp 0.4s ease-out;
}

.present-item-modal.slide-down {
    animation: slideDown 0.4s ease-out;
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Ensure all profile pictures are round */
.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
/* iOS-style Christmas Theme */
:root {
    --ios-red: #ff3b30;
    --ios-green: #34c759;
    --ios-blue: #007aff;
    --ios-orange: #ff9500;
    --ios-purple: #af52de;
    --ios-pink: #ff2d92;
    --ios-yellow: #ffcc00;
    --ios-gray: #8e8e93;
    --ios-light-gray: #f2f2f7;
    --ios-dark-gray: #1c1c1e;
    --ios-background: #f2f2f7;
    --ios-card: #ffffff;
    --ios-text: #000000;
    --ios-text-secondary: #8e8e93;
    --ios-border: #c6c6c8;
    --ios-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --ios-shadow-large: 0 4px 12px rgba(0, 0, 0, 0.15);
    --ios-blur: blur(20px);
    --ios-primary: #007aff;
    --ios-secondary: #5856d6;
    --ios-success: #34c759;
    --ios-warning: #ff9500;
    --ios-danger: #ff3b30;
    --ios-info: #5ac8fa;
    --christmas-red: #ff3b30;
    --christmas-green: #34c759;
    --christmas-gold: #ffcc00;
    --border-light: #e9ecef;
    }}

body {
    background: url('seba.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    z-index: -1;
}

/* Cover Banner with Header */
.cover-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.cover-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cover-banner p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-weight: 400;
}

/* Login Panel with seba.jpg heading */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Keep card container stable, only animate content */
.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--ios-blur);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('seba.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.95;
    z-index: -1;
    border-radius: 20px;
}

/* Animate only the content inside */
.login-header, .login-body {
    transition: opacity 0.3s ease;
}

.content-transition {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-transition.loaded {
    opacity: 1;
}

.login-header {
    background: transparent;
    padding: 0.5rem 1.25rem 0.5rem 1.25rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-header h2 {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.login-body {
    padding: 1.25rem;
    position: relative;
    background: transparent;
    backdrop-filter: blur(0px);
}

.login-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
    border-radius: 0 0 20px 20px;
}

.login-body h4 {
    color: white;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 4px 16px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.login-body .text-center p {
    color: white !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 3px 12px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.login-body p {
    color: white !important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 3px 12px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

/* Form improvements */
.form-control, .form-select {
    border: 2px solid var(--ios-border);
    border-radius: 16px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(3px);
    font-family: inherit;
    font-weight: 500;
    min-height: 48px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-control:focus, .form-select:focus {
    border-color: var(--ios-primary);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15);
    background: white;
    outline: none;
    transform: translateY(-1px);
}

/* Form row improvements */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
    width: 100%;
}

.form-row > * {
    padding: 0 0.75rem;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Input group improvements */
.input-group {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.input-group-text {
    background: var(--christmas-red);
    color: white !important;
    border: 2px solid var(--christmas-red);
    border-radius: 16px 0 0 16px;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.input-group .form-control {
    border-radius: 0 16px 16px 0;
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
}

/* Button group improvements */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.btn-group .btn {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

/* Modal improvements for better containment */
.modal-dialog {
    max-width: 90vw;
    margin: 1.75rem auto;
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    max-width: 100%;
    overflow: hidden;

  
}

.modal-header {
    border-bottom: 1px solid var(--ios-border);
    padding: 1.5rem 2rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.modal-body {
    padding: 2rem;
    overflow-x: auto;
    max-width: 100%;
 
   
}

.modal-footer {
    border-top: 1px solid var(--ios-border);
    padding: 1.5rem 2rem;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ios-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Alert improvements for better containment */
.alert {
    border-radius: 16px;
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.alert-success {
    background: rgba(52, 199, 89, 0.1);
    color: #2db84d;
    border-left: 4px solid var(--ios-success);
}

.alert-danger {
    background: rgba(255, 59, 48, 0.1);
    color: #e03535;
    border-left: 4px solid var(--ios-danger);
}

.alert-warning {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
    border-left: 4px solid #ff9500;
}

/* Table improvements */
.table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-radius: 16px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 1rem;
    border-bottom: 1px solid var(--ios-border);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card improvements */
.card {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* List group improvements */
.list-group {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid var(--ios-border);
    padding: 1rem 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.list-group-item:last-child {
    border-bottom: none;
}

/* Badge improvements */
.badge {
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Tooltip improvements */
.tooltip {
    max-width: 200px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tooltip-inner {
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    max-width: 200px;
}

/* Popover improvements */
.popover {
    border-radius: 16px;
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    overflow: hidden;
}

.popover-header {
    border-bottom: 1px solid var(--ios-border);
    border-radius: 16px 16px 0 0;
    padding: 1rem 1.5rem;
}

.popover-body {
    padding: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Present items improvements */
.present-item {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    padding: 1.25rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.present-item:hover {
    background: #fff;
    border-color: var(--ios-primary);
    box-shadow: 0 4px 16px rgba(0,122,255,0.08);
    transform: translateY(-2px);
}

.present-item .row {
    align-items: center;
    width: 100%;
    margin: 0;
}

.present-item .col-md-1,
.present-item .col-md-2,
.present-item .col-md-3,
.present-item .col-md-4 {
    padding: 0 0.75rem;
    overflow: hidden;
}

.present-item .form-check {
    display: flex;
    justify-content: center;
    margin: 0;
}

.present-item .form-check-input {
    margin: 0;
    cursor: pointer;
    width: 1.2rem;
    height: 1.2rem;
}

.present-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ios-text);
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
    word-break: break-word;
}

.present-comments {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
    line-height: 1.5;
    word-break: break-word;
}

.present-date {
    font-size: 0.85rem;
    color: var(--ios-text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

/* Share buttons improvements */
.share-buttons {
    margin-top: 0.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.share-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-decoration: none;
}

.share-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-color: #25d366;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

.share-btn.messenger {
    background: rgba(0, 132, 255, 0.1);
    color: #0084ff;
    border-color: #0084ff;
}

.share-btn.messenger:hover {
    background: #0084ff;
    color: white;
}

.share-btn.email {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border-color: #6c757d;
}

.share-btn.email:hover {
    background: #6c757d;
    color: white;
}

/* Button group improvements */
.btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.btn-group-vertical .btn {
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-group-vertical .btn:first-child {
    border-radius: 8px 8px 0 0;
}

.btn-group-vertical .btn:last-child {
    border-radius: 0 0 8px 8px;
}

.btn-group-vertical .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

/* Special case for single button in group */
.btn-group-vertical .btn:only-child {
    border-radius: 8px;
}

/* New Sort System */
.sort-container {
    position: relative;
    display: inline-block;
}

.sort-btn {
    background: var(--ios-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
    height: 48px;
    margin-top: 0.5rem;
}

.sort-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.sort-btn:active {
    transform: translateY(0);
}

.sort-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 200px;
    z-index: 1000;
    margin-top: 8px;
    display: none;
    overflow: hidden;
}

.sort-menu.show {
    display: block;
}

.sort-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.sort-item:last-child {
    border-bottom: none;
}

.sort-item:hover {
    background-color: #f8f9fa;
}

.sort-item.active {
    background-color: var(--ios-primary);
    color: white;
}

.sort-item i {
    width: 16px;
    text-align: center;
}

.sort-option {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--ios-border);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sort-option:last-child {
    border-bottom: none;
}

.sort-option:hover {
    background: var(--ios-light-gray);
    transform: translateX(4px);
}

.sort-option.selected {
    background: var(--ios-primary);
    color: white;
}

/* Search controls improvements */
.search-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.search-input-container {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 100%;
}

.clear-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--ios-gray);
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: none;
    z-index: 10;
}

.clear-search-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--ios-danger);
}

.clear-search-btn.visible {
    display: block;
}

.search-input {
    border: 2px solid var(--ios-border);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--ios-card);
    flex: 1;
    min-width: 200px;
    max-width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-top: 0.5rem;
    padding-right: 40px; /* Make room for clear button */
}

.sort-button {
    background: var(--ios-primary);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.25);
    height: 48px;
    box-sizing: border-box;
    margin-top: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: fit-content;
    cursor: pointer;
}

.sort-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.35);
}

.sort-button:active {
    transform: translateY(0);
}

/* Buttons with improved styling */
.btn {
    border-radius: 16px;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-danger {
    background: var(--ios-danger);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.25);
}

.btn-danger:hover {
    background: #e03535;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.35);
}

.btn-success {
    background: var(--ios-success);
    color: white;
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.25);
}

.btn-success:hover {
    background: #2db84d;
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.35);
}

.btn-outline-danger {
    border: 2px solid var(--ios-danger);
    color: var(--ios-danger);
    background: transparent;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.15);
}

.btn-outline-danger:hover {
    background: var(--ios-danger);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.25);
}

/* Share buttons */
.share-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.messenger {
    background: #0084ff;
    color: white;
}

.share-btn.email {
    background: var(--ios-gray);
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

/* Progress bars */
.progress {
    height: 8px;
    border-radius: 4px;
    background: var(--ios-light-gray);
    overflow: hidden;
}

.progress-bar {
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .navbar-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        flex: 1;
        text-align: center;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0 0.25rem;
        white-space: nowrap;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.3);
        font-weight: 600;
    }
    
    .navbar-nav .btn {
        flex: 1;
        margin: 0 0.25rem;
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .navbar .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Mobile sharing buttons */
    .share-buttons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .share-buttons .share-btn {
        flex: 1;
        min-width: 0;
        max-width: 120px;
        margin: 0.25rem 0;
    }
}

/* Ensure all navigation buttons have text */
.navbar-nav .nav-link i,
.navbar-nav .btn i {
    margin-right: 0.5rem;
}

/* Hide navbar brand on mobile to save space */
@media (max-width: 576px) {
    .navbar-brand {
        display: none;
    }
    
    .navbar-nav {
        margin-top: 0;
    }
}

/* Snowfall effect - only in login panels */
.login-card .snowflake {
    position: absolute;
    top: -100px;
    z-index: 0; /* Behind form elements */
    user-select: none;
    cursor: default;
    animation: fall linear infinite;
    color: white;
    font-size: 0.8em;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
    opacity: 0.6;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.6;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(400px) rotate(360deg);
        opacity: 0;
    }
}

/* Different snowflake positions and slower speeds */
.login-card .snowflake:nth-child(1) { left: 10%; animation-duration: 20s; animation-delay: 0s; }
.login-card .snowflake:nth-child(2) { left: 20%; animation-duration: 25s; animation-delay: 5s; }
.login-card .snowflake:nth-child(3) { left: 30%; animation-duration: 30s; animation-delay: 10s; }
.login-card .snowflake:nth-child(4) { left: 40%; animation-duration: 22s; animation-delay: 15s; }
.login-card .snowflake:nth-child(5) { left: 50%; animation-duration: 28s; animation-delay: 20s; }
.login-card .snowflake:nth-child(6) { left: 60%; animation-duration: 24s; animation-delay: 25s; }
.login-card .snowflake:nth-child(7) { left: 70%; animation-duration: 32s; animation-delay: 30s; }
.login-card .snowflake:nth-child(8) { left: 80%; animation-duration: 20s; animation-delay: 35s; }
.login-card .snowflake:nth-child(9) { left: 90%; animation-duration: 26s; animation-delay: 40s; }
.login-card .snowflake:nth-child(10) { left: 15%; animation-duration: 30s; animation-delay: 45s; }
.login-card .snowflake:nth-child(11) { left: 25%; animation-duration: 22s; animation-delay: 50s; }
.login-card .snowflake:nth-child(12) { left: 35%; animation-duration: 28s; animation-delay: 55s; }
.login-card .snowflake:nth-child(13) { left: 45%; animation-duration: 24s; animation-delay: 60s; }
.login-card .snowflake:nth-child(14) { left: 55%; animation-duration: 32s; animation-delay: 65s; }
.login-card .snowflake:nth-child(15) { left: 65%; animation-duration: 20s; animation-delay: 70s; }
.login-card .snowflake:nth-child(16) { left: 75%; animation-duration: 26s; animation-delay: 75s; }
.login-card .snowflake:nth-child(17) { left: 85%; animation-duration: 30s; animation-delay: 80s; }
.login-card .snowflake:nth-child(18) { left: 95%; animation-duration: 22s; animation-delay: 85s; }
.login-card .snowflake:nth-child(19) { left: 5%; animation-duration: 28s; animation-delay: 90s; }
.login-card .snowflake:nth-child(20) { left: 100%; animation-duration: 24s; animation-delay: 95s; }

/* iOS-style Presents container */
.presents-container {
    display: flex;
    flex-direction: column;
}

.present-item {
    order: 0;
      transition: all .5s ease-in-out;
}

.present-item.checked {
    order: 1;
      transition: all .5s ease-in-out;
    
  
}

/* iOS-style filter dropdown */
.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ios-card);
    border: 1px solid var(--ios-border);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.filter-result-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--ios-border);
}

.filter-result-item:last-child {
    border-bottom: none;
}

.filter-result-item:hover {
    background: var(--ios-light-gray);
}

.filter-result-item.selected {
    background: var(--ios-primary);
    color: white;
}

/* Ensure form elements are above snowflakes */
.login-header, .login-body, .input-group, .btn, .form-control {
    position: relative;
    z-index: 2;
}

/* Style dla opcji "Dodaj nową osobę" w dropdownie */
.form-select option.text-primary {
    color: var(--ios-primary) !important;
    font-weight: 500;
    background-color: rgba(0, 122, 255, 0.1);
}

.form-select option.text-primary:hover {
    background-color: rgba(0, 122, 255, 0.2);
}

/* Recipients page improvements */
.recipient-item {
    background: var(--ios-card);
    border: 1px solid var(--ios-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.recipient-item:hover {
    border-color: var(--ios-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: none;
}

.recipient-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ios-text);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipient-item .btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.recipient-item .btn-group-vertical .btn {
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipient-item .btn-group-vertical .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.recipient-item .btn-outline-primary {
    border: 2px solid var(--ios-primary);
    color: var(--ios-primary);
    background: rgba(0, 122, 255, 0.05);
}

.recipient-item .btn-outline-primary:hover {
    background: var(--ios-primary);
    color: white;
    border-color: var(--ios-primary);
}

.recipient-item .btn-outline-danger {
    border: 2px solid var(--ios-danger);
    color: var(--ios-danger);
    background: rgba(255, 59, 48, 0.05);
}

.recipient-item .btn-outline-danger:hover {
    background: var(--ios-danger);
    color: white;
    border-color: var(--ios-danger);
}

.recipient-item .btn-outline-success {
    border: 2px solid var(--ios-success);
    color: var(--ios-success);
    background: rgba(52, 199, 89, 0.05);
}

.recipient-item .btn-outline-success:hover {
    background: var(--ios-success);
    color: white;
    border-color: var(--ios-success);
}

.recipient-item .btn-outline-warning {
    border: 2px solid #ff9500;
    color: #ff9500;
    background: rgba(255, 149, 0, 0.05);
}

.recipient-item .btn-outline-warning:hover {
    background: #ff9500;
    color: white;
    border-color: #ff9500;
}

/* Profile picture improvements */
.profile-picture-wrapper {
    position: relative;
    display: inline-block;
}

/* Badge removed - no longer showing checkmark on identified user profile pictures */

.profile-picture-wrapper.identified img,
.profile-picture-wrapper.identified {
    border: none !important;
    box-shadow: none !important;
}

/* Progress bar improvements */
.recipient-item .progress {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.recipient-item .progress-bar {
    background: var(--ios-success);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Badge improvements */
.recipient-item .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.recipient-item .badge.bg-success {
    background: rgba(52, 199, 89, 0.1) !important;
    color: var(--ios-success) !important;
    border: 1px solid var(--ios-success);
}

/* Alert improvements in recipient items */
.recipient-item .alert {
    border-radius: 12px;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.recipient-item .alert-warning {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
    border-left: 3px solid #ff9500;
}

/* Presents preview improvements */
.presents-preview {
    margin-top: 1rem;
}

.presents-preview .present-item {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.presents-preview .present-item:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: none;
    box-shadow: none;
}

.presents-preview .present-item.checked {
    opacity: 0.6;
    background: rgba(52, 199, 89, 0.05);
}

/* Responsive improvements for recipients */
@media (max-width: 768px) {
    .recipient-item {
        padding: 1rem;
    }
    
    .recipient-item .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .recipient-item .col-md-2,
    .recipient-item .col-md-4,
    .recipient-item .col-md-6 {
        width: 100%;
        text-align: center;
    }
    
    .recipient-item .btn-group-vertical {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .recipient-item .btn-group-vertical .btn {
        flex: 1;
        max-width: 180px;
    }
    
    .recipient-name {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .profile-picture-wrapper {
        margin: 0 auto;
    }
}

/* Container improvements */
.container {
    max-width: 1200px;
    padding: 0 1.5rem;
    margin: 0 auto;
    overflow-x: hidden;
}

.container.mt-4 {
    margin-top: 2rem !important;
}

/* Checkbox improvements */
.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 6px;
    border: 2px solid var(--ios-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--ios-primary);
    border-color: var(--ios-primary);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.15);
    border-color: var(--ios-primary);
}

/* Spinner improvements */
.spinner-border {
    width: 2rem;
    height: 2rem;
    border-width: 0.2rem;
    color: var(--ios-primary);
}

/* Text improvements */
.text-muted {
    color: var(--ios-text-secondary) !important;
    font-weight: 500;
}

/* Link improvements */
a {
    color: var(--ios-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: none;
}

/* Recipient link improvements */
.recipient-link {
    color: var(--ios-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    background: rgba(0, 122, 255, 0.1);
}

.recipient-link:hover {
    color: #0056b3;
    background: rgba(0, 122, 255, 0.15);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Comment link improvements */
.comment-link {
    color: var(--ios-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.125rem 0.25rem;
    border-radius: 4px;
    background: rgba(0, 122, 255, 0.1);
    font-size: 0.85rem;
}

.comment-link:hover {
    color: #0056b3;
    background: rgba(0, 122, 255, 0.15);
    text-decoration: none;
    transform: translateY(-1px);
}

.comment-link:visited {
    color: var(--ios-primary);
}

/* Profile picture improvements */
.profile-picture-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile-picture-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-picture-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-picture-wrapper.identified img,
.profile-picture-wrapper.identified {
    border: none !important;
    box-shadow: none !important;
}

/* Certification badge improvements */
.cert-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--christmas-green), #2db84d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
    border: 2px solid white;
}

.cert-badge i {
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Global box-sizing fix */
* {
    box-sizing: border-box;
}

/* Row and column improvements */
.row {
    margin: 0;
    width: 100%;
}

.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-8 {
    padding: 0 0.75rem;
    overflow: hidden;
}

/* iOS-style Main Content Cards */
.main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--ios-blur);
    border: none;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.main-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.main-card .card-header {
    background: var(--christmas-red);
    backdrop-filter: var(--ios-blur);
    border-bottom: 1px solid var(--ios-border);
    padding: 0.75rem 1.5rem;
    border-radius: 20px 20px 0 0;
    min-height: 56px;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.main-card .card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.main-card .card-body {
    padding: 2rem;
    width: 100%;
    overflow-x: auto;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--ios-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    width: 100%;
    overflow: hidden;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--christmas-red) !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ios-text) !important;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 12px;
    margin: 0 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-link:hover {
    color: var(--christmas-red) !important;
    background: rgba(255, 59, 48, 0.1);
}

.nav-link.active {
    color: var(--christmas-red) !important;
    font-weight: 600;
    background: rgba(255, 59, 48, 0.15);
}

/* Form labels and spacing */
.form-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ios-text);
    margin-bottom: 0.75rem;
    display: block;
    width: 100%;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
}

/* iOS-style Flat Design Submit Button */
.btn-login {
    background: var(--christmas-red);
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
    backdrop-filter: blur(3px);
}

.btn-login:hover {
    background: #d70015;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

/* Flat Design Link Buttons */
.btn-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
}

.btn-link:hover {
    color: white !important;
    background: rgba(255, 59, 48, 0.2);
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

/* iOS-style Flat Design Icons */
.login-card .fa-gift {
    font-size: 2rem;
    color: var(--christmas-red);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Flat Design Input Groups with red icons */
.input-group-text i {
    color: white !important;
}

/* Button group improvements for recipients */
.recipient-item .btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
}

.recipient-item .btn-group-vertical .btn {
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipient-item .btn-group-vertical .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Fix for single button or first/last button in group */
.recipient-item .btn-group-vertical .btn:first-child {
    border-radius: 12px;
}

.recipient-item .btn-group-vertical .btn:last-child {
    border-radius: 12px;
}

.recipient-item .btn-group-vertical .btn:only-child {
    border-radius: 12px;
}

/* Identification buttons improvements */
.recipient-item .btn-outline-success.btn-sm,
.recipient-item .btn-outline-warning.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    min-height: 32px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipient-item .btn-outline-success.btn-sm:hover,
.recipient-item .btn-outline-warning.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Ensure identification buttons are smaller than action buttons */
.recipient-item .mb-3 .btn {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

/* Responsive adjustments for identification buttons */
@media (max-width: 768px) {
    .recipient-item .mb-3 .btn {
        max-width: 100%;
        width: 100%;
    }
}

/* Override Bootstrap btn-group-vertical styles for recipients */
.recipient-item .btn-group-vertical > .btn {
    border-radius: 12px !important;
    margin-bottom: 0.5rem;
}

.recipient-item .btn-group-vertical > .btn:first-child {
    border-radius: 12px !important;
}

.recipient-item .btn-group-vertical > .btn:last-child {
    border-radius: 12px !important;
    margin-bottom: 0;
}

.recipient-item .btn-group-vertical > .btn:only-child {
    border-radius: 12px !important;
    margin-bottom: 0;
}

/* Ensure proper spacing between buttons */
.recipient-item .btn-group-vertical > .btn:not(:last-child) {
    margin-bottom: 0.5rem;
}

/* Better alignment for identification buttons next to name */
.recipient-item .d-flex.align-items-center .btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
    min-height: 32px;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
}

.recipient-item .d-flex.align-items-center .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Ensure name and button are properly aligned */
.recipient-item .d-flex.align-items-center {
    gap: 0.5rem;
    flex-wrap: wrap;
}

.recipient-item .recipient-name {
    flex: 1;
    min-width: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .recipient-item .d-flex.align-items-center {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .recipient-item .d-flex.align-items-center .btn {
        align-self: flex-start;
    }
    
    /* Przyciski profilu na całą szerokość w wersji mobilnej */
    .recipient-item .btn-group-vertical {
        width: 100%;
    }
    
    .recipient-item .btn-group-vertical .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Present list action buttons improvements */
.present-item .btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.present-item .btn-group-vertical .btn {
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.present-item .btn-group-vertical .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.present-item .btn-group-vertical .btn:first-child {
    border-radius: 8px 8px 0 0;
}

.present-item .btn-group-vertical .btn:last-child {
    border-radius: 0 0 8px 8px;
}

.present-item .btn-group-vertical .btn:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.present-item .btn-group-vertical .btn:only-child {
    border-radius: 8px;
}

/* Slide down effect for checked presents */
.present-item.checked {
    opacity: 0.7;
    background: rgba(128, 128, 128, 0.1);
    border-color: rgba(128, 128, 128, 0.3);
    transition: all 0.5s ease;
 
}

.present-item.checked .present-title {
    text-decoration: line-through;
    color: var(--ios-text-secondary);
}

/* Animation for checking/unchecking presents */
.present-item {
    transition: all 0.5s ease;

}

.present-item.checking {
     transition: all .5s ease-in-out;
    opacity: 0.8;
}

.present-item.unchecking {
    transition: all .5s ease-in-out;
    opacity: 0.8;
}

/* Share buttons with text improvements */
.share-buttons .share-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.share-buttons .share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Edit button styling to match delete button */
.btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Ensure consistent styling for edit and delete buttons in presents list */
.present-item .btn-outline-primary,
.present-item .btn-outline-danger {
    border-width: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.present-item .btn-outline-primary:hover,
.present-item .btn-outline-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ensure edit and delete buttons are properly aligned to the right */
.present-item .col-md-2.text-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.present-item .btn-group-vertical {
    margin-left: auto;
}

/* Improve button spacing and alignment */
.present-item .btn-group-vertical .btn {
    margin-bottom: 0.25rem;
    min-width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.present-item .btn-group-vertical .btn:last-child {
    margin-bottom: 0;
}

/* Mobile navigation improvements */
@media (max-width: 768px) {
    .navbar-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        flex: 1;
        text-align: center;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        margin: 0 0.25rem;
        white-space: nowrap;
        font-size: 0.9rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.3);
        font-weight: 600;
    }
    
    .navbar-nav .btn {
        flex: 1;
        margin: 0 0.25rem;
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .navbar .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Mobile sharing buttons */
    .share-buttons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .share-buttons .share-btn {
        flex: 1;
        min-width: 0;
        max-width: 120px;
        margin: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .main-card .card-body {
        padding: 1rem;
    }
    
    .main-card .card-header {
        padding: 0.5rem 0.75rem;
    }
    
    .main-card .card-header h3 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-control, .form-select {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Ensure all navigation buttons have text */
.navbar-nav .nav-link i,
.navbar-nav .btn i {
    margin-right: 0.5rem;
}

/* Hide navbar brand on mobile to save space */
@media (max-width: 576px) {
    .navbar-brand {
        display: none;
    }
    
    .navbar-nav {
        margin-top: 0;
    }
}

/* Mobile responsiveness for form fields */
@media (max-width: 768px) {
    .col-md-4 {
        width: 100% !important;
    }
    
    .col-md-2 {
        width: 100% !important;
        margin-bottom: 1rem;
    }
    
    /* Ensure buttons are properly sized on mobile */
    .btn-group-vertical .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    /* Make share buttons stack vertically on mobile */
    .share-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons .btn {
        width: 100%;
    }
    
    /* Adjust present item layout on mobile */
    .present-item .row {
        flex-direction: column;
    }
    
    .present-item .col-md-1,
    .present-item .col-md-2,
    .present-item .col-md-3 {
        width: 100% !important;
        margin-bottom: 0.5rem;
    }
    
    .present-item .text-end {
        text-align: center !important;
    }
    
    .present-item .btn-group-vertical {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .present-item .btn-group-vertical .btn {
        margin-bottom: 0;
    }
}

/* Progress display for identified users */
.progress-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.progress-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(#28a745 0deg, #28a745 calc(var(--progress, 0) * 1%), #e9ecef calc(var(--progress, 0) * 1%), #e9ecef 100%);
    border-radius: 50%;
}

.progress-circle::after {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    position: absolute;
}

.progress-circle-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #495057;
    z-index: 1;
    position: relative;
}

.progress-circle-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
    text-align: center;
}

.stat-card {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Identification modal styles */
#identificationModal .modal-dialog {
    max-width: 800px;
}

#identificationModal .card {
    transition: all 0.3s ease;
    cursor: pointer;
}

#identificationModal .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#identificationModal .card.border-warning {
    opacity: 0.7;
}

#identificationModal .card.border-primary {
    border-width: 2px;
}

/* Ensure modal cannot be closed by clicking outside or pressing escape */
#identificationModal[data-bs-backdrop="static"] {
    pointer-events: none;
}

#identificationModal[data-bs-backdrop="static"] .modal-dialog {
    pointer-events: auto;
}

/* Recipient Cards and Purchased Presents */
.recipient-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.recipient-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.recipient-card-header {
    background: linear-gradient(135deg, var(--ios-primary), #0056b3);
    color: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recipient-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.present-count {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    margin-left: auto;
}

.recipient-presents {
    padding: 1rem;
}

.recipient-presents .present-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    padding: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.recipient-presents .present-item:last-child {
    margin-bottom: 0;
}

.recipient-presents .present-item:hover {
    background: white;
    border-color: var(--ios-primary);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.1);
}

/* Purchased Section */
.purchased-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.purchased-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.purchased-title {
    color: #6c757d;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.purchased-count {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    margin-left: auto;
}

.purchased-presents {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Purchased Present Items */
.present-item.purchased {
    opacity: 0.7;
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
}

.present-item.purchased .present-title {
    text-decoration: line-through;
    color: #6c757d;
}

.present-item.purchased .present-comments {
    color: #6c757d;
}

.present-item.purchased .btn {
    opacity: 0.6;
}

.present-item.purchased .btn:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .recipient-card-header {
        padding: 0.75rem 1rem;
    }
    
    .recipient-name {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .present-count {
        margin-left: 0;
    }
    
    .recipient-presents {
        padding: 0.75rem;
    }
    
    .purchased-section {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .purchased-title {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .purchased-count {
        margin-left: 0;
    }
}

/* Recipients page specific styles */
.recipients-page .main-card:not(.col-md-4) {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.recipients-page .main-card .card-header .text-white {
    color: white !important;
}

.recipients-page .main-card .card-header .text-white i {
    color: white !important;
}

/* Compact cards for recipients page */
.recipients-page .compact-card {
    min-height: auto;
    height: auto;
}

.recipients-page .compact-card .card-body {
    padding: 1.5rem;
}

/* Mobile responsive styles for action buttons */
@media (max-width: 575.98px) {
    .recipients-page .compact-card .card-body {
        padding: 0.75rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .recipients-page .compact-card .btn-lg {
        font-size: 0.8rem;
        padding: 0.4rem 0.5rem;
        line-height: 1.2;
    }
    
    .recipients-page .compact-card .text-muted {
        font-size: 0.7rem;
    }
    
    .recipients-page .action-btn .btn-text {
        display: none;
    }
    
    .recipients-page .action-btn i {
        margin-right: 0;
        font-size: 1.2rem;
    }
    
    .recipients-page .compact-card .btn-lg {
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0 auto;
    }
    
    /* Ensure all three cards have equal height */
    .recipients-page .row .col-4:nth-child(3) .compact-card .card-body {
        padding-bottom: 1.5rem;
    }
    
    /* Mobile styles for recipients list */
    .recipient-item .col-md-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .recipient-item .profile-picture-wrapper {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .recipient-item .btn-group-vertical {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .recipient-item .btn-group-vertical .btn {
        flex: 1;
        max-width: 180px;
    }
    
    .recipient-item .d-flex.align-items-center {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .recipient-item .recipient-name {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    /* Ensure profile picture is centered above name in mobile */
    .recipient-item .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .recipient-item .col-md-6 {
        width: 100%;
        text-align: center;
    }

    /* Center the user icon in mobile view */
    .recipient-item .recipient-name {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    .recipient-item .recipient-name i.fas.fa-user {
        margin-right: 0;
    }
}

/* Align the recipients list card with the top containers */
.recipients-page .container > .main-card {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0.5rem;
}

/* Remove bottom margin from action buttons container */
.recipients-page .row:first-child {
    margin-bottom: 0;
}

.recipients-page .row:first-child .col-4 {
    margin-bottom: 0;
}

.recipients-page .row:first-child .compact-card {
    margin-bottom: 0;
}

/* Reservation button styles for recipients page */
.recipients-page .present-item .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.375rem;
}

.recipients-page .present-item .btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.recipients-page .present-item .btn-outline-warning:hover {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107;
}

.recipients-page .present-item .btn-success {
    background-color: #198754;
    border-color: #198754;
}

.recipients-page .present-item .btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
}

.recipients-page .present-item .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    opacity: 0.6;
}

/* Improve spacing in present items */
.recipients-page .present-item {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.recipients-page .present-item.checked {
    opacity: 0.6;
    background-color: rgba(255, 255, 255, 0.02);
}

.recipients-page .present-item.checked .present-title {
    text-decoration: line-through;
    color: #6c757d;
}

/* Mobile styles for presents list in recipients page */
@media (max-width: 575.98px) {
    .recipients-page .present-item .d-flex.align-items-center.justify-content-between {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.5rem;
    }
    
    .recipients-page .present-item .d-flex.align-items-center.justify-content-between > .d-flex.align-items-center:last-child {
        justify-content: flex-end;
        width: 100%;
    }
    
    .recipients-page .present-item .w-100.w-md-auto {
        width: 100% !important;
    }
}

@media (min-width: 768px) {
    .recipients-page .present-item .w-100.w-md-auto {
        width: auto !important;
    }
    
    .recipients-page .present-item .d-flex.align-items-center.justify-content-between {
        flex-direction: row !important;
        align-items: center !important;
    }
}

/* Reserved items styling */
.present-item.reserved-by-other {
    opacity: 0.6;
    background-color: #f8f9fa;
    border-left: 3px solid #6c757d;
}

.present-item.reserved-by-other .present-title {
    color: #6c757d;
    text-decoration: line-through;
}

.present-item.reserved-by-other .present-comments {
    color: #adb5bd;
}

.present-item.reserved-by-other .form-check-input {
    opacity: 0.5;
    pointer-events: none;
}

.present-item.reserved-by-other .btn {
    opacity: 0.7;
}

/* Mobile specific styles for reserved items */
@media (max-width: 768px) {
    .present-item.reserved-by-other {
        opacity: 0.5;
    }
    
    .present-item.reserved-by-other .present-title {
        font-size: 0.9rem;
    }
}

/* Perfectly circular avatars and trash icons */
.profile-picture-wrapper {
    position: relative;
    display: inline-block;
}

.profile-picture-wrapper img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.profile-picture-wrapper .fas.fa-user {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
}

/* Trash icon styling */
.recipient-name .btn-outline-danger {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid var(--ios-danger);
    background: var(--ios-danger);
    color: white;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.recipient-name .btn-outline-danger:hover {
    background: #d32f2f;
    border-color: #d32f2f;
    transform: scale(1.1);
}

.recipient-name .btn-outline-danger i {
    font-size: 12px;
}

/* Mobile layout improvements for action buttons */
@media (max-width: 768px) {
    .recipients-page .row .col-4 {
        width: 100% !important;
        margin-bottom: 1rem;
    }
    
    .recipients-page .row .col-4:nth-child(2),
    .recipients-page .row .col-4:nth-child(3) {
        width: 50% !important;
        display: inline-block;
    }
    
    .recipients-page .compact-card .card-body {
        padding: 1rem 0.75rem;
        min-height: auto;
    }
    
    .recipients-page .action-btn {
        width: 100%;
        height: 60px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .recipients-page .action-btn .btn-text {
        display: none;
    }
    
    .recipients-page .action-btn i {
        font-size: 2rem;
        margin: 0;
    }
    
    /* Enhanced mobile button styling */
    .recipients-page .action-btn.btn-primary {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: white;
        border: 2px solid #007bff;
        box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
        border-radius: 12px;
        padding: 1rem;
    }
    
    .recipients-page .action-btn.btn-warning {
        background: linear-gradient(135deg, #ffc107, #e0a800);
        color: #212529;
        border: 2px solid #ffc107;
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
        border-radius: 12px;
        padding: 1rem;
    }
    
    .recipients-page .action-btn.btn-success {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        color: white;
        border: 2px solid #28a745;
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        border-radius: 12px;
        padding: 1rem;
    }
}

/* Enhanced self-identification modal with iOS-style cards */
#selfIdentificationModal .modal-dialog {
    max-width: 500px;
}

#selfIdentificationModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--ios-shadow-large);
    overflow: hidden;
}

#selfIdentificationModal .modal-header {
    background: linear-gradient(135deg, var(--ios-primary), var(--ios-secondary));
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

#selfIdentificationModal .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

#selfIdentificationModal .modal-body {
    padding: 2rem;
    text-align: center;
}

#selfIdentificationModal .modal-body p {
    font-size: 1.1rem;
    color: var(--ios-text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

#selfIdentificationModal .modal-footer {
    border-top: none;
    padding: 1.5rem;
    gap: 12px;
}

#selfIdentificationModal .btn {
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

#selfIdentificationModal .btn-secondary {
    background: var(--ios-light-gray);
    color: var(--ios-text);
}

#selfIdentificationModal .btn-secondary:hover {
    background: var(--ios-gray);
    transform: translateY(-1px);
}

#selfIdentificationModal .btn-warning {
    background: var(--ios-warning);
    color: white;
}

#selfIdentificationModal .btn-warning:hover {
    background: #e68900;
    transform: translateY(-1px);
}

#selfIdentificationModal .btn-success {
    background: var(--ios-success);
    color: white;
}

#selfIdentificationModal .btn-success:hover {
    background: #2db84d;
    transform: translateY(-1px);
}

/* Enhanced recipient selection modal */
#recipientSelectionModal .modal-dialog {
    max-width: 600px;
}

#recipientSelectionModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: var(--ios-shadow-large);
}

#recipientSelectionModal .modal-header {
    background: linear-gradient(135deg, var(--ios-success), var(--ios-primary));
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

#recipientSelectionModal .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

#recipientSelectionModal .modal-body {
    padding: 2rem;
}

#recipientSelectionModal .list-group-item {
    border-radius: 12px;
    margin-bottom: 8px;
    border: 2px solid var(--ios-light-gray);
    transition: all 0.3s ease;
    padding: 1rem;
}

#recipientSelectionModal .list-group-item:hover {
    border-color: var(--ios-primary);
    background: var(--ios-light-gray);
    transform: translateY(-1px);
}

#recipientSelectionModal .list-group-item .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    border: none;
}

#recipientSelectionModal .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--ios-shadow);
}

#recipientSelectionModal .form-control {
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
}

#recipientSelectionModal .form-control:focus {
    box-shadow: none;
    border-color: var(--ios-primary);
}

#recipientSelectionModal .btn-success {
    background: var(--ios-success);
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
}

#recipientSelectionModal .btn-success:hover {
    background: #2db84d;
    transform: translateY(-1px);
}

/* Mobile improvements for modals */
@media (max-width: 768px) {
    #selfIdentificationModal .modal-dialog,
    #recipientSelectionModal .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    #selfIdentificationModal .modal-body,
    #recipientSelectionModal .modal-body {
        padding: 1.5rem;
    }
    
    #selfIdentificationModal .modal-footer,
    #recipientSelectionModal .modal-footer {
        padding: 1.5rem;
        flex-direction: column;
    }
    
    #selfIdentificationModal .btn,
    #recipientSelectionModal .btn {
        width: 100%;
        margin-bottom: 8px;
    }
    
    #recipientSelectionModal .list-group-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    #recipientSelectionModal .list-group-item .btn {
        width: 100%;
    }
}

/* Make action button containers clickable */
.recipients-page .compact-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--ios-shadow);
}

.recipients-page .compact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ios-shadow-large);
}

.recipients-page .compact-card .card-body {
    padding: 1.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.recipients-page .action-btn {
    width: 100%;
    border: none;
    background: transparent;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.recipients-page .action-btn:hover {
    transform: scale(1.05);
}

.recipients-page .action-btn:focus {
    box-shadow: none;
    outline: none;
}

/* Enhanced button colors and styling */
.recipients-page .action-btn.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: 2px solid #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.recipients-page .action-btn.btn-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.recipients-page .action-btn.btn-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: 2px solid #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.recipients-page .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.recipients-page .action-btn.btn-primary:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    border-color: #0056b3;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.recipients-page .action-btn.btn-warning:hover {
    background: linear-gradient(135deg, #e0a800, #d39e00);
    border-color: #e0a800;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.recipients-page .action-btn.btn-success:hover {
    background: linear-gradient(135deg, #1e7e34, #155724);
    border-color: #1e7e34;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
} 

/* Mobile layout improvements */
@media (max-width: 768px) {
    /* Blue container (Add Present) full width on mobile */
    .recipients-page .row:first-child .col-4:first-child {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .recipients-page .row:first-child .col-4:not(:first-child) {
        width: 50%;
    }
    
    /* Ensure equal heights for action button containers */
    .recipients-page .compact-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .recipients-page .compact-card .card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Slide animations for present items */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
        z-index: 1;
    }
    to {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
        z-index: 1;
    }
    to {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}






.present-item.reserved-by-me {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.present-item.reserved-by-me .present-title {
    color: #856404;
}

/* Updated slide animations for present items */
@keyframes smoothSlideUp {
    0% {
        transform: translateY(100%);
        opacity: 1;
        z-index: 2;
    }
    80% {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}

@keyframes smoothSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 1;
        z-index: 2;
    }
    80% {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        z-index: 2;
    }
}

@keyframes fadeOutCard {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

.present-item.smooth-slide-up {
    animation: smoothSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.present-item.smooth-slide-down {
    animation: smoothSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.present-item.fading {
    animation: fadeOutCard 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reserved Presents Modal Styles */
.present-item-modal {
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.present-item-modal:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.present-item-modal.checked {
    background-color: #d4edda;
    border-color: #c3e6cb !important;
}

.present-item-modal.checked h6 {
    text-decoration: line-through;
    color: #6c757d;
}

.present-item-modal .form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
}

.present-item-modal .card-header {
    font-weight: 600;
}

.present-item-modal .badge {
    font-size: 0.75rem;
}

/* Animation for items moving between categories */
.present-item-modal.slide-up {
    animation: slideUp 0.4s ease-out;
}

.present-item-modal.slide-down {
    animation: slideDown 0.4s ease-out;
}

@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Ensure all profile pictures are round */
.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.recipient-avatar img:hover {
    transform: scale(1.05);
    border-color: var(--ios-primary);
}

/* Profile picture placeholder styling */
.profile-picture-placeholder {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid var(--border-light);
    font-size: 2rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
}

.profile-picture-placeholder:hover {
    background: var(--ios-gray);
    transform: scale(1.05);
}

.profile-picture-placeholder i {
    color: var(--ios-text-secondary);
}

/* Large profile picture placeholder for modal */
.profile-picture-placeholder-large {
    width: 200px !important;
    height: 200px !important;
    border-radius: 50% !important;
    background: var(--border-light);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 4px solid var(--border-light);
    font-size: 4rem;
    color: var(--ios-text-secondary);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profile-picture-placeholder-large i {
    color: var(--ios-text-secondary);
}

/* Profile picture styling - ensure all are round */
.recipient-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recipient-avatar img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}


#profileModalImage {
  max-height: 80vh !important;
     max-width: 80vw;
    width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.profile-preview-image {

    width: auto;
    height: auto;
  max-height: 90%;
    max-width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Present item transitions for checklist */
.presents-list {
    position: relative;
}

.present-item {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
    margin-bottom: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
}

.present-item.checked {
    background: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
    opacity: 0.7;
}

.present-item.slide-down {
    transform: translateY(100px);
    opacity: 0;
}

.present-item.slide-up {
    transform: translateY(-100px);
    opacity: 0;
}

.present-item.removing {
    transform: translateY(-100px);
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

/* Smooth height transitions for containers */
.presents-container {
    transition: height 0.6s ease-out;
    overflow: hidden;
}

/* Animation for new items appearing */
.present-item.appearing {
    animation: slideInFromTop 0.6s ease-out;
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for items being removed */
.present-item.removing {
    animation: slideOutToTop 0.6s ease-out;
}

@keyframes slideOutToTop {
    from {
        transform: translateY(0);
        opacity: 1;
        height: auto;
    }
    to {
        transform: translateY(-50px);
        opacity: 0;
        height: 0;
    }
}

/* Enhanced checkbox styling for better visual feedback */
.present-item .form-check-input {
    transition: all 0.3s ease;
    transform: scale(1);
}

.present-item .form-check-input:checked {
    transform: scale(1.1);
    animation: checkPulse 0.3s ease-out;
}

@keyframes checkPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1.1); }
}

/* Smooth transition for the entire present item when checked */
.present-item.checked .present-title {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

/* Container height calculation for smooth animations */
.presents-list-container {
    position: relative;
    overflow: hidden;
}

/* Stagger animation for multiple items */
.present-item:nth-child(1) { transition-delay: 0ms; }
.present-item:nth-child(2) { transition-delay: 50ms; }
.present-item:nth-child(3) { transition-delay: 100ms; }
.present-item:nth-child(4) { transition-delay: 150ms; }
.present-item:nth-child(5) { transition-delay: 200ms; }

/* Enhanced visual feedback for interactions */
.present-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.present-item.checked:hover {
    transform: translateY(-1px);
}

/* Loading state for items being updated */
.present-item.updating {
    pointer-events: none;
    opacity: 0.5;
}

.present-item.updating .form-check-input {
    animation: spin 1s linear infinite;
}

/* Animation state to prevent interaction during movement */
.present-item.animating {
    pointer-events: none;
}

.present-item.animating .form-check-input {
    pointer-events: none;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Modal present item transitions */
.present-item-modal {
    transition: all 0.6s ease-out;
    position: relative;
}

.present-item-modal.updating {
    pointer-events: none;
    opacity: 0.5;
}

.present-item-modal.updating .form-check-input {
    animation: spin 1s linear infinite;
}

/* Animation state to prevent interaction during movement */
.present-item-modal.animating {
    pointer-events: none;
}

.present-item-modal.animating .form-check-input {
    pointer-events: none;
}

/* Animation state to prevent interaction during movement */
.present-item-modal.animating {
    pointer-events: none;
}

.present-item-modal.animating .form-check-input {
    pointer-events: none;
}

.present-item-modal.checked {
    background-color: rgba(40, 167, 69, 0.1);
    border-color: rgba(40, 167, 69, 0.3);
}

.present-item-modal.checked h6 {
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.6);
}

/* Enhanced checkbox styling for modal items */
.present-item-modal .form-check-input {
    transition: all 0.3s ease;
    transform: scale(1);
}

.present-item-modal .form-check-input:checked {
    transform: scale(1.1);
    animation: checkPulse 0.3s ease-out;
}

/* Updated animation timing and semi-transparent effect for other items during animation */
.present-item.smooth-slide-up {
    animation: smoothSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.present-item.smooth-slide-down {
    animation: smoothSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.present-item.fading {
    animation: fadeOutCard 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation state to prevent interaction during movement */
.present-item.animating {
    pointer-events: none;
}

/* Modal animation timing updates */
.present-item-modal.slide-up {
    animation: slideUp 0.8s ease-out;
}

.present-item-modal.slide-down {
    animation: slideDown 0.8s ease-out;
}

/* Animation state to prevent interaction during movement */
.present-item-modal.animating {
    pointer-events: none;
}


/* Notification Banner */
.notification-banner {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1040;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-banner .btn-light {
    background: white;
    color: #c62828;
    border: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.notification-banner .btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.notification-banner .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.notification-banner .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}


/* Floating Notification Bell */
.notification-bell-floating {
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 9999 !important;
}

.notification-bell-floating .notification-bell-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-bell-floating .notification-bell-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.notification-bell-floating .notification-bell-btn:active {
    transform: translateY(0) scale(0.98);
}

.notification-bell-floating .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3b30;
    color: white;
    border-radius: 12px;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.notification-bell-floating .notification-dropdown {
    position: absolute !important;
    top: 60px !important;
    right: 0 !important;
    width: 380px;
    max-width: 90vw;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    z-index: 10000 !important;
}

.notification-bell-floating .notification-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-bell-floating .notification-dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.notification-bell-floating .notification-dropdown-header h6 {
    color: white;
    margin: 0;
}

.notification-bell-floating .notification-dropdown-header .btn-link {
    color: white;
    font-size: 0.85rem;
    padding: 0;
}

.notification-bell-floating .notification-dropdown-body {
    padding: 0;
    overflow-y: auto;
    max-height: 350px;
}

.notification-bell-floating .notification-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    gap: 0.75rem;
    align-items: start;
}

.notification-bell-floating .notification-item:hover {
    background: #f8f9fa;
}

.notification-bell-floating .notification-item.unread {
    background: #f0f4ff;
}

.notification-bell-floating .notification-item.unread:hover {
    background: #e6edff;
}

.notification-bell-floating .notification-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-bell-floating .notification-content {
    flex: 1;
    min-width: 0;
}

.notification-bell-floating .notification-text {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
}

.notification-bell-floating .notification-time {
    font-size: 0.75rem;
    color: #999;
}

.notification-bell-floating .notification-unread-dot {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.notification-bell-floating .notification-dropdown-footer {
    padding: 0.75rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 0 16px 16px;
}

.notification-bell-floating .notification-dropdown-footer .btn-link {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.notification-bell-floating .notification-dropdown-footer .btn-link:hover {
    color: white;
    text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .notification-bell-floating {
        top: 10px;
        right: 10px;
    }
    
    .notification-bell-floating .notification-bell-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .notification-bell-floating .notification-dropdown {
        width: calc(100vw - 20px);
        right: 0;
    }
}
