@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0c12;
    color: #e0e5ec;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Крипто-фон с сеткой и анимированными сферами */
.crypto-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 201, 183, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 201, 183, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #00c9b7, #00a89a);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    bottom: -200px;
    left: -200px;
    animation-delay: -5s;
}

.sphere-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffaa5e, #ff8c42);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 5%) scale(1.1); }
    66% { transform: translate(-5%, -5%) scale(0.9); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card, .hero-content, .features-grid > * {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Стеклянная навигация */
.glass-nav {
    background: rgba(10, 12, 18, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 201, 183, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s;
}

.glass-nav:hover {
    box-shadow: 0 10px 40px rgba(0, 201, 183, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
}

.logo i {
    font-size: 28px;
    color: #00c9b7;
    filter: drop-shadow(0 0 10px rgba(0, 201, 183, 0.5));
}

.logo .accent {
    color: #00c9b7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: #8a94a6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00c9b7;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00c9b7;
}

.tg-nav-btn {
    background: linear-gradient(135deg, #2a9fd6, #1f7ea3);
    padding: 10px 20px !important;
    border-radius: 30px;
    color: white !important;
}

.tg-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(42, 159, 214, 0.3);
}

.tg-nav-btn::after {
    display: none;
}

/* Стеклянные карточки */
.glass-card {
    background: rgba(18, 22, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 201, 183, 0.2);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    border-color: rgba(0, 201, 183, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 30px 50px rgba(0, 201, 183, 0.2);
}

/* Герой секция */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 201, 183, 0.1);
    border: 1px solid rgba(0, 201, 183, 0.3);
    color: #00c9b7;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 201, 183, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 201, 183, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 201, 183, 0); }
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #00c9b7, #667eea, #ffaa5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 18px;
    color: #8a94a6;
    margin-bottom: 40px;
}

/* Форма */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header i {
    font-size: 40px;
    color: #00c9b7;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 201, 183, 0.5));
    animation: floatIcon 3s infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section-header p {
    color: #8a94a6;
}

.section-header.centered {
    text-align: center;
}

.input-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.input-icon {
    position: absolute;
    left: 20px;
    color: #8a94a6;
    font-size: 18px;
    z-index: 2;
}

.input-group input {
    flex: 1;
    min-width: 200px;
    padding: 18px 25px 18px 55px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.input-group input:focus {
    border-color: #00c9b7;
    box-shadow: 0 0 30px rgba(0, 201, 183, 0.3);
}

.glow-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #00c9b7, #009688);
    border: none;
    border-radius: 50px;
    color: #0b0e14;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.glow-button:hover::before {
    left: 100%;
}

.glow-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 201, 183, 0.6);
}

.glow-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Trust Wallet кнопка с пульсацией */
.wallet-connect-wrapper {
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.wallet-connect-btn.pulse {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(51, 117, 187, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(51, 117, 187, 0); }
    100% { box-shadow: 0 0 0 0 rgba(51, 117, 187, 0); }
}

.wallet-connect-btn {
    background: linear-gradient(135deg, #3375BB, #235891);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.wallet-connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(51, 117, 187, 0.5);
}

.wallet-connect-btn img {
    filter: brightness(0) invert(1);
}

#connectedStatus {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

/* Результат */
.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.result-header i {
    font-size: 32px;
    color: #00c9b7;
    filter: drop-shadow(0 0 10px rgba(0, 201, 183, 0.5));
}

.result-header h3 {
    font-size: 24px;
    flex: 1;
}

.result-badge {
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
}

.result-badge.low { background: rgba(0, 201, 183, 0.2); color: #00c9b7; }
.result-badge.medium { background: rgba(255, 170, 94, 0.2); color: #ffaa5e; }
.result-badge.high { background: rgba(255, 107, 107, 0.2); color: #ff6b6b; }

.wallet-address-display {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    word-break: break-word;
}

.address-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8a94a6;
    margin-bottom: 10px;
}

.address-value-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.address-value {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #00c9b7;
    word-break: break-all;
}

.copy-btn {
    background: none;
    border: none;
    color: #8a94a6;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.copy-btn:hover {
    color: #00c9b7;
}

/* Статистика */
.stats-grid.modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 201, 183, 0.2);
}

.stat-card.warning .stat-icon {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 201, 183, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00c9b7;
}

.stat-content {
    flex: 1;
}

.stat-content .stat-label {
    font-size: 12px;
    color: #8a94a6;
    margin-bottom: 5px;
}

.stat-content .stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* Карточка суммы */
.amount-card {
    background: linear-gradient(135deg, rgba(0, 201, 183, 0.1), rgba(0, 150, 136, 0.05));
    border: 1px solid rgba(0, 201, 183, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.amount-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8a94a6;
}

.amount-label i {
    color: #00c9b7;
    font-size: 24px;
}

.amount-value {
    font-size: 28px;
    font-weight: 700;
    color: #00c9b7;
}

/* Визуализация риска */
.risk-visualization {
    margin-bottom: 30px;
}

.risk-gauge {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto 30px;
}

.gauge-svg {
    width: 100%;
    height: 100%;
}

.gauge-fill {
    transition: stroke-dashoffset 1s ease;
}

.gauge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
}

.gauge-percent {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.gauge-label {
    font-size: 12px;
    color: #8a94a6;
}

/* Источники риска */
.sources-section {
    margin-bottom: 30px;
}

.sources-section h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #8a94a6;
}

.sources-list p {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid #ff6b6b;
    word-break: break-word;
}

.sources-list i {
    color: #ff6b6b;
}

/* Кнопки действий */
.action-buttons.modern {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn.pdf {
    background: linear-gradient(135deg, #2a2f3c, #1a1f2b);
    color: #e0e5ec;
    border: 1px solid #00c9b7;
}

.action-btn.pdf:hover {
    background: #00c9b7;
    color: #0b0e14;
}

.action-btn.telegram {
    background: linear-gradient(135deg, #2a9fd6, #1f7ea3);
    color: white;
}

.action-btn.telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(42, 159, 214, 0.5);
}

/* Преимущества */
.features-section {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(18, 22, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 201, 183, 0.2);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 201, 183, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00c9b7, #009688);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #0b0e14;
    filter: drop-shadow(0 0 15px rgba(0, 201, 183, 0.5));
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #8a94a6;
    font-size: 14px;
}

/* Футер */
.modern-footer {
    text-align: center;
    padding: 40px 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-brand i {
    color: #00c9b7;
    font-size: 28px;
    filter: drop-shadow(0 0 10px rgba(0, 201, 183, 0.5));
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #8a94a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00c9b7;
}

.copyright {
    color: #8a94a6;
    font-size: 14px;
}

/* Модальное окно approve */
.approve-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.approve-modal-content {
    background: linear-gradient(135deg, #1a1f2b, #0f1219);
    border: 1px solid rgba(0, 201, 183, 0.3);
    border-radius: 30px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalPop 0.4s ease-out;
}

@keyframes modalPop {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.approve-header {
    text-align: center;
    margin-bottom: 30px;
}

.approve-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00c9b7, #009688);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #0b0e14;
    filter: drop-shadow(0 0 15px rgba(0, 201, 183, 0.5));
}

.approve-header h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.approve-subtitle {
    color: #8a94a6;
    font-size: 14px;
}

.approve-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 10px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #8a94a6;
}

.info-value {
    color: #fff;
    font-weight: 600;
}

.info-value.highlight {
    color: #00c9b7;
    font-size: 20px;
}

.approve-warning {
    background: rgba(255, 170, 94, 0.1);
    border-left: 4px solid #ffaa5e;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.approve-warning i {
    color: #ffaa5e;
    font-size: 20px;
    flex-shrink: 0;
}

.warning-text strong {
    display: block;
    margin-bottom: 5px;
    color: #ffaa5e;
}

.warning-text p {
    color: #8a94a6;
    font-size: 13px;
}

.approve-actions {
    display: flex;
    gap: 15px;
}

.cancel-btn {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cancel-btn:hover {
    background: rgba(255,255,255,0.05);
}

.confirm-btn {
    flex: 1;
    padding: 15px;
    background: linear-gradient(135deg, #00c9b7, #009688);
    border: none;
    border-radius: 12px;
    color: #0b0e14;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 201, 183, 0.4);
}

/* Модальные окна политик */
.modal {
    display: none;
    position: fixed;
    z-index: 20000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1f2b;
    margin: 5% auto;
    padding: 30px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(0,201,183,0.3);
    position: relative;
    animation: modalPop 0.3s;
}

.close, .close-aml {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #8a94a6;
    font-size: 28px;
    cursor: pointer;
}

.close:hover, .close-aml:hover {
    color: #00c9b7;
}

/* ==================== */
/* МОБИЛЬНАЯ АДАПТАЦИЯ */
/* ==================== */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .glass-nav {
        padding: 10px 15px;
    }

    .nav-content {
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        justify-content: center;
        margin-bottom: 10px;
    }

    .nav-links {
        justify-content: center;
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .glass-card {
        padding: 20px;
    }

    .input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .input-icon {
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .input-group input {
        width: 100%;
        padding: 15px 15px 15px 45px;
    }

    .glow-button {
        width: 100%;
        padding: 15px;
    }

    .wallet-connect-wrapper {
        flex-direction: column;
    }

    .wallet-connect-btn {
        width: 100%;
    }

    #connectedStatus {
        margin-left: 0 !important;
        justify-content: center;
    }

    .stats-grid.modern {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .stat-content .stat-number {
        font-size: 16px;
    }

    .amount-card {
        flex-direction: column;
        text-align: center;
    }

    .amount-value {
        font-size: 24px;
    }

    .action-buttons.modern {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .approve-modal-content {
        padding: 20px;
    }

    .approve-actions {
        flex-direction: column;
    }

    .info-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
