/* Genel Stiller */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.5;
}

/* Copy Button */
.copy-button {
    background: none;
    border: none;
    padding: 4px 8px;
    margin-left: 8px;
    cursor: pointer;
    color: #64748b;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.copy-button:hover {
    background: #f1f5f9;
    color: #3b82f6;
}

.copy-button svg {
    width: 16px;
    height: 16px;
}

.copy-button.copied {
    color: #10b981;
    background: #f0fdf4;
}

/* Container Styles */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

/* Form Elements */
.form-group {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.input-group {
    margin-bottom: 16px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Checkbox için özel stil */
.input-group.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-group.checkbox-group label {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.input-group.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

/* Buttons */
button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    background: #2563eb;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Header Styles */
.user-container, .admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
}

.user-info, .owner-info {
    background: linear-gradient(145deg, #7c3aed, #6d28d9);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.2);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.user-info p, .owner-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.user-info span, .owner-info span {
    font-family: 'Roboto Mono', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
    font-size: 13px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-info span:hover, .owner-info span:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.user-info .copy-button, .owner-info .copy-button {
    margin-left: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.user-info .copy-button:hover, .owner-info .copy-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.user-info .copy-button.copied, .owner-info .copy-button.copied {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
    color: white;
}

.logout-button {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-button:hover {
    background: #dc2626;
}

/* Mobile Compatibility */
@media (max-width: 768px) {
    .user-info, .owner-info {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 16px;
    }
    
    .user-info p, .owner-info p {
        justify-content: center;
    }
    
    .user-info span, .owner-info span {
        width: 100%;
        box-sizing: border-box;
    }
    
    .logout-button {
        width: 100%;
    }
}

/* Tab Styles */
.tab-container {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.tab-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 12px;
}

.tab-button {
    background: none;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-button:hover {
    background: #f8fafc;
    color: #0f172a;
}

.tab-button.active {
    background: #3b82f6;
    color: white;
}

.tab-button.active:hover {
    background: #2563eb;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Compatibility for Tabs */
@media (max-width: 768px) {
    .tab-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-button {
        width: 100%;
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Product List Styles */
.product-list {
    margin-top: 20px;
}

.product-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.product-table th {
    background: #f8fafc;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.product-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 14px;
}

.product-table tr:last-child td {
    border-bottom: none;
}

.product-table tr:hover td {
    background: #f8fafc;
}

.product-table td:nth-child(2) {
    font-family: 'Roboto Mono', monospace;
    font-size: 13px;
}

/* Product ve Vesting Detayları */
.product-details,
.vesting-details {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.product-details h4,
.vesting-details h4 {
    margin: 0 0 20px 0;
    color: #1e293b;
    font-size: 18px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 12px;
}

.detail-row .label {
    font-weight: 500;
    color: #374151;
}

.detail-row .value {
    font-family: 'Roboto Mono', monospace;
    color: #0369a1;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

/* Wallet Link */
.wallet-link {
    color: #3b82f6;
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
    transition: all 0.2s;
}

.wallet-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 20px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.schedule-table th {
    background: #f8fafc;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.schedule-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tr:hover td {
    background: #f8fafc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background: white;
    margin: 40px auto;
    width: 90%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: #1e293b;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    padding: 4px;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-modal:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.modal-body {
    padding: 24px;
}

/* Mobile Compatibility */
@media (max-width: 768px) {
    .product-table,
    .schedule-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-table th,
    .product-table td,
    .schedule-table th,
    .schedule-table td {
        white-space: nowrap;
        padding: 12px;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .detail-row .value {
        width: 100%;
        box-sizing: border-box;
    }
    
    .modal-content {
        margin: 20px;
        width: auto;
    }
}

/* Son Oylama Durumu */
.last-vote-info {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.last-vote-info .vote-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 20px;
    background: white;
    border-radius: 16px;
    font-size: 15px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.last-vote-info .label {
    font-weight: 500;
    color: #374151;
}

.last-vote-info .value {
    background: #f8fafc;
    padding: 12px 24px;
    border-radius: 12px;
    color: #0369a1;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.last-vote-info .vote-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.last-vote-info .vote-status.completed {
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    color: #065f46;
    border: 1px solid rgba(6, 95, 70, 0.1);
}

.last-vote-info .vote-status.in-progress {
    background: linear-gradient(145deg, #fefce8, #fef9c3);
    color: #854d0e;
    border: 1px solid rgba(133, 77, 14, 0.1);
}

.last-vote-info .vote-count {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 25px;
}

.last-vote-info .vote-count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.last-vote-info .vote-count-item.yes {
    background: linear-gradient(145deg, #ffffff, #f0fdf4);
    border-color: rgba(34, 197, 94, 0.1);
}

.last-vote-info .vote-count-item.no {
    background: linear-gradient(145deg, #ffffff, #fef2f2);
    border-color: rgba(239, 68, 68, 0.1);
}

.last-vote-info .vote-count-item .count {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.last-vote-info .vote-count-item.yes .count {
    color: #15803d;
}

.last-vote-info .vote-count-item.no .count {
    color: #b91c1c;
}

.last-vote-info .vote-count-item .text {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.last-vote-info .vote-time {
    font-family: 'Roboto Mono', monospace;
    color: #64748b;
    font-size: 13px;
    text-align: right;
    margin-top: 16px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Mobile Compatibility for Last Vote Info */
@media (max-width: 768px) {
    .last-vote-info {
        padding: 20px;
    }
    
    .last-vote-info .vote-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    
    .last-vote-info .value,
    .last-vote-info .vote-status {
        width: 100%;
        box-sizing: border-box;
    }
    
    .last-vote-info .vote-count {
        grid-template-columns: 1fr;
    }
    
    .last-vote-info .vote-time {
        width: 100%;
        text-align: center;
    }
}

/* Vesting Bilgileri */
.vesting-status {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vesting-status p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    font-size: 15px;
}

.vesting-status span {
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    color: #065f46;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid rgba(6, 95, 70, 0.1);
}

.vesting-info {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vesting-info p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 20px;
    background: white;
    border-radius: 16px;
    font-size: 15px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.vesting-info p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.1);
}

.vesting-info span {
    background: #f8fafc;
    padding: 12px 24px;
    border-radius: 12px;
    color: #0369a1;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    font-family: 'Roboto Mono', monospace;
    min-width: 140px;
    text-align: center;
    letter-spacing: 0.3px;
}

/* Release Button */
#releaseButton {
    background: #3b82f6;
    color: white;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

#releaseButton:not(:disabled):hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

#releaseButton:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobil Uyumluluk için Vesting Bilgileri */
@media (max-width: 768px) {
    .vesting-status,
    .vesting-info {
        padding: 20px;
    }
    
    .vesting-status p,
    .vesting-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    
    .vesting-status span,
    .vesting-info span {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Wallet Cell Styles */
.wallet-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet-cell .wallet-link {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wallet-cell .copy-button {
    padding: 4px;
    min-width: 28px;
    height: 28px;
    background: none;
    border: 1px solid #e2e8f0;
    color: #64748b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.wallet-cell .copy-button:hover {
    background: #f1f5f9;
    color: #3b82f6;
    border-color: #3b82f6;
}

.wallet-cell .copy-button svg {
    width: 16px;
    height: 16px;
}

.wallet-cell .copy-button.copied {
    background: #f0fdf4;
    color: #10b981;
    border-color: #10b981;
}

/* Voting Row Styles */
.voting-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.voting-row .form-group {
    margin: 0;
}

/* Mobile Compatibility for Voting Row */
@media (max-width: 768px) {
    .voting-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Vote Buttons */
.vote-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.vote-buttons button {
    flex: 1;
}

.vote-buttons .vote-yes {
    background: #22c55e;
}

.vote-buttons .vote-yes:hover {
    background: #16a34a;
}

.vote-buttons .vote-no {
    background: #ef4444;
}

.vote-buttons .vote-no:hover {
    background: #dc2626;
}

/* Product Info Styles */
.product-info {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-info p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.product-info p:hover {
    background: #f1f5f9;
}

.product-info span {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    color: #1e293b;
    padding: 6px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .product-info p {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .product-info span {
        width: 100%;
        text-align: center;
    }
}

/* Index Page Styles */
.index-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.index-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 360px;
    width: 100%;
    animation: fadeIn 0.6s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index-card h1 {
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.index-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 24px;
}

.connect-button-container {
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.connect-button-container:last-child {
    margin-bottom: 0;
}

.connect-button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    height: 48px;
    box-sizing: border-box;
}

.connect-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

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

.connect-button svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile Compatibility for Index Page */
@media (max-width: 768px) {
    .index-card {
        padding: 24px;
        margin: 16px;
    }

    .index-card h1 {
        font-size: 24px;
    }

    .connect-button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

.header {
    background-color: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 2rem;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.contract-address .copy-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.contract-address .copy-button svg {
    width: 1.2rem;
    height: 1.2rem;
    color: #6c757d;
}

.contract-address .copy-button:hover svg {
    color: #495057;
}

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    max-width: 380px;
    width: calc(100% - 48px);
    z-index: 9999;
    animation: notificationSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3b82f6;
    gap: 12px;
    transform-origin: center;
    margin: 0;
}

.notification .icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 4px;
}

.notification .icon svg {
    width: 18px;
    height: 18px;
    color: #3b82f6;
}

.notification.error {
    border-left-color: #ef4444;
    background: #fff;
}

.notification.error .icon svg {
    color: #ef4444;
}

.notification.warning {
    border-left-color: #f59e0b;
    background: #fff;
}

.notification.warning .icon svg {
    color: #f59e0b;
}

.notification.success {
    border-left-color: #10b981;
    background: #fff;
}

.notification.success .icon svg {
    color: #10b981;
}

.notification .message {
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #1e293b;
    margin: 0;
    padding: 0;
}

.notification .close-button {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #64748b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 4px;
}

.notification .close-button:hover {
    background: #f1f5f9;
    color: #1e293b;
}

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

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

@media (max-width: 768px) {
    .notification {
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto;
        max-width: none;
        padding: 12px 16px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}