* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ヘッダーロゴ対応版 */
.header {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 30px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-logo {
    flex-shrink: 0;
    z-index: 10;
}

.header-logo a {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-logo a:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.header-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.header h1 {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
}

.page-nav {
    margin-bottom: 20px;
}

.back-btn {
    background: #4ECDC4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s;
    text-decoration: none;
}

.back-btn:hover {
    background: #44A08D;
}

/* アクセス制限関連のスタイル */
.access-denied {
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.access-denied h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.access-denied p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
}

.access-denied a {
    display: inline-block;
    background: #4a90e2;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.access-denied a:hover {
    background: #357abd;
}

.access-info {
    margin-top: 15px;
    padding: 10px;
    background: #f0f8ff;
    border-left: 4px solid #4a90e2;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.access-info strong {
    color: #2c5aa0;
}

/* 期限警告スタイル */
.access-info.warning {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.access-info.warning strong {
    color: #856404;
}

.access-info.danger {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.access-info.danger strong {
    color: #721c24;
}

/* 物件一覧ページ */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.property-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #e0e0e0, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.property-image:hover {
    transform: scale(1.02);
}

.property-image .property-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    opacity: 0;
}

.property-image .property-img.loaded {
    opacity: 1;
}

.property-image .property-img.error {
    display: none !important;
}

/* 読み込み中のローディング表示 */
.property-image:not(.no-image) {
    position: relative;
}

.property-image:not(.no-image):before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4ECDC4;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s;
}

.property-image.no-image:before,
.property-image:has(.property-img.loaded):before {
    opacity: 0;
    pointer-events: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.property-card:hover .property-img {
    transform: scale(1.05);
}

/* 画像読み込み失敗時のフォールバック */
.property-image .property-img[src=""],
.property-image .property-img:not([src]) {
    display: none;
}

.property-image.no-image {
    background: linear-gradient(45deg, #e8f4f8, #d4f1f4);
    color: #4ECDC4;
    font-size: 16px;
}

.property-info {
    padding: 20px;
}

.property-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.property-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.property-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
}

.yield {
    background: #4ECDC4;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.property-location {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
}

.pagination a, .pagination span {
    background: white;
    border: 2px solid #4ECDC4;
    color: #4ECDC4;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.pagination a:hover {
    background: #4ECDC4;
    color: white;
}

.pagination .current {
    background: #4ECDC4;
    color: white;
}

.pagination .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

.error {
    text-align: center;
    padding: 40px;
    color: #e74c3c;
    font-size: 16px;
    background: #fff;
    border-radius: 10px;
    margin: 20px 0;
}

/* 詳細ページ */
.detail-header {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
    position: relative;
}

.detail-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
    display: flex;
    align-items: baseline;
    gap: 15px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.calculated-floor {
    font-size: 20px;
    font-weight: 500;
    color: #666;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.detail-main {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.detail-sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: fit-content;
}

/* 画像カルーセル関連のスタイル */
.detail-image {
    width: 100% !important;
    height: 300px !important;
    border-radius: 8px !important;
    margin-bottom: 30px !important;
    position: relative !important;
    background: none !important;
    display: block !important;
    color: inherit !important;
}

.detail-image .single-image,
.detail-image .image-carousel {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

.detail-image .property-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
    background-color: #f8f9fa !important;
    cursor: pointer !important;
    transition: transform 0.2s ease !important;
}

.detail-image .property-image:hover {
    transform: scale(1.02) !important;
}

/* カルーセル関連のスタイル */
.detail-image .carousel-container {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    height: 100% !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
    background-color: #f8f9fa !important;
}

.detail-image .carousel-images {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
}

.detail-image .carousel-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out !important;
}

.detail-image .carousel-slide.active {
    opacity: 1 !important;
}

.detail-image .carousel-slide .property-image {
    border-radius: 8px !important;
    box-shadow: none !important;
    object-fit: contain !important;
    object-position: center !important;
    background-color: #f8f9fa !important;
}

/* ナビゲーション矢印 */
.detail-image .carousel-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(78, 205, 196, 0.8) !important;
    color: white !important;
    border: none !important;
    font-size: 24px !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.detail-image .carousel-btn:hover {
    background: rgba(68, 160, 141, 0.9) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.detail-image .carousel-btn:focus {
    outline: 2px solid #4ECDC4;
    outline-offset: 2px;
}

.detail-image .carousel-prev {
    left: 15px !important;
}

.detail-image .carousel-next {
    right: 15px !important;
}

/* インジケーター */
.detail-image .carousel-indicators {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 10px !important;
    z-index: 10 !important;
}

.detail-image .indicator {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    border: 2px solid white !important;
    background: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.detail-image .indicator.active {
    background: #4ECDC4 !important;
    border-color: #4ECDC4 !important;
}

.detail-image .indicator:hover {
    background: white !important;
    transform: scale(1.2) !important;
}

.detail-image .indicator:focus {
    outline: 2px solid #4ECDC4;
    outline-offset: 2px;
}

/* 画像カウンター */
.detail-image .image-counter {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    color: white !important;
    padding: 8px 12px !important;
    border-radius: 20px !important;
    font-size: 14px !important;
    font-weight: bold !important;
    z-index: 10 !important;
}

/* 画像読み込み中の表示改善 */
.detail-image .property-image[src=""],
.detail-image .property-image:not([src]) {
    background: linear-gradient(45deg, #e8f4f8, #d4f1f4) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #4ECDC4 !important;
    font-size: 16px !important;
}

.detail-image .property-image[src=""]:before,
.detail-image .property-image:not([src]):before {
    content: "🏢 画像読み込み中..." !important;
}

/* 画像モーダルのスタイル */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
    touch-action: pinch-zoom;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    touch-action: pinch-zoom;
    overflow: hidden;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    background-color: #f0f0f0;
    touch-action: pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px 25px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    z-index: 10001;
    user-select: none;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.5);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    z-index: 10001;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #4ECDC4;
    padding-bottom: 10px;
}

.detail-table {
    width: 100%;
    margin-bottom: 30px;
}

.detail-table tr {
    border-bottom: 1px solid #eee;
}

.detail-table td {
    padding: 12px 0;
    vertical-align: top;
}

.detail-table td:first-child {
    font-weight: bold;
    color: #666;
    width: 50%;
}

.price-info {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
}

.price-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.yield-section {
    margin-bottom: 0;
}

.price-label, .yield-label {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.8;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.price-main {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
}

.yield-main {
    font-size: 18px;
    font-weight: bold;
    opacity: 0.95;
    line-height: 1.2;
}

.contact-btn {
    width: 100%;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #c0392b;
}

.contact-btn:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

.map-container {
    width: 100%;
    height: 300px;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #e8f4f8, #d4f1f4);
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ECDC4;
    font-size: 16px;
}

.owner-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.owner-page-header h2 {
    color: #4ECDC4;
    font-size: 24px;
    margin-bottom: 10px;
}

.update-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.not-found {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.not-found h2 {
    color: #e74c3c;
    font-size: 24px;
    margin-bottom: 20px;
}

.not-found p {
    color: #666;
    margin-bottom: 30px;
}

/* 手取り家賃収入の表示（計算式付き） */
.net-income-simple {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.income-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.income-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.income-value {
    font-size: 20px;
    font-weight: bold;
    color: #4ECDC4;
}

.calculation-formula {
    font-size: 14px;
    color: #666;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
    font-family: monospace;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header-content {
        padding: 0 15px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .header-title {
        position: static;
        transform: none;
        flex: 1;
        text-align: center;
        margin-left: 15px;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .property-image {
        height: 180px;
    }
    
    .property-image .property-img {
        object-fit: contain;
    }
    
    .detail-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .detail-sidebar {
        order: 1;
    }
    
    .detail-main {
        order: 2;
    }
    
    .container {
        padding: 10px;
    }
    
    .detail-main, .detail-sidebar {
        padding: 20px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }

    .pagination a, .pagination span {
        padding: 8px 12px;
        font-size: 12px;
    }

    .detail-header {
        padding: 30px 20px;
    }
    
    .detail-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 26px;
    }

    .calculated-floor {
        font-size: 16px;
    }

    .price-main {
        font-size: 28px;
    }

    .yield-main {
        font-size: 16px;
    }

    .price-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    /* アクセス制限画面のレスポンシブ対応 */
    .access-denied {
        margin: 20px auto;
        padding: 40px 15px;
    }

    .access-denied h3 {
        font-size: 20px;
    }

    .access-info {
        font-size: 13px;
        padding: 8px;
    }

    /* カルーセル レスポンシブ対応 */
    .detail-image {
        height: 250px !important;
        margin-bottom: 20px !important;
    }
    
    .detail-image .carousel-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }
    
    .detail-image .carousel-prev {
        left: 10px !important;
    }
    
    .detail-image .carousel-next {
        right: 10px !important;
    }
    
    .detail-image .indicator {
        width: 12px !important;
        height: 12px !important;
    }
    
    .detail-image .carousel-indicators {
        bottom: 15px !important;
        gap: 8px !important;
    }
    
    .detail-image .image-counter {
        top: 10px !important;
        right: 10px !important;
        padding: 6px 10px !important;
        font-size: 12px !important;
    }
    
    /* モーダルのモバイル対応 */
    .modal-content {
        padding: 10px;
    }
    
    .modal-image {
        max-width: 95%;
        max-height: 85%;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
        width: 50px;
        height: 50px;
    }
    
    .modal-nav {
        font-size: 24px;
        padding: 12px 16px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
    
    .modal-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
    
    /* 手取り家賃収入のモバイル対応 */
    .net-income-simple {
        padding: 15px;
    }
    
    .income-row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .income-label {
        font-size: 15px;
    }
    
    .income-value {
        font-size: 18px;
    }
    
    .calculation-formula {
        font-size: 13px;
        padding-top: 8px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 10px;
    }
    
    .header h1 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .header-title {
        margin-left: 10px;
    }
    
    .detail-header {
        padding: 25px 15px;
        border-radius: 12px;
    }
    
    .detail-title {
        font-size: 22px;
        gap: 6px;
    }
    
    .calculated-floor {
        font-size: 14px;
    }
    
    /* モーダルの小さなスマートフォン対応 */
    .modal-nav {
        font-size: 20px;
        padding: 10px 12px;
    }
    
    .modal-prev {
        left: 5px;
    }
    
    .modal-next {
        right: 5px;
    }
    
    .modal-counter {
        bottom: 15px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* タッチデバイスでのホバー効果を無効化 */
@media (hover: none) {
    .modal-close:hover,
    .modal-nav:hover {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
    .property-card,
    .carousel-slide,
    .carousel-btn,
    .indicator,
    .back-btn,
    .contact-btn,
    .access-denied a,
    .header-logo a,
    .image-modal {
        transition: none;
        animation: none;
    }
    
    .property-card:hover .property-img {
        transform: none;
    }
    
    .carousel-btn:hover {
        transform: translateY(-50%) !important;
    }
    
    .indicator:hover {
        transform: none !important;
    }
    
    .property-image:hover,
    .detail-image .property-image:hover {
        transform: none !important;
    }
}

/* 高コントラスト対応 */
@media (prefers-contrast: high) {
    .access-info {
        border-left-width: 6px;
        background: #ffffff;
        color: #000000;
    }
    
    .access-info.warning {
        background: #ffffff;
        border-left-color: #000000;
        color: #000000;
    }
    
    .access-info.danger {
        background: #ffffff;
        border-left-color: #000000;
        color: #000000;
    }
    
    .image-modal {
        background-color: rgba(0, 0, 0, 0.95);
    }
    
    .modal-close,
    .modal-nav {
        background: rgba(255, 255, 255, 0.9);
        color: #000000;
    }
}