﻿
h1 {
    font-weight: 300;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.description {
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-success {
    background-color: #2ecc71;
    color: white;
}

    .btn-success:hover {
        background-color: #27ae60;
        transform: translateY(-2px);
    }

.btn-warning {
    background-color: #f39c12;
    color: white;
}

    .btn-warning:hover {
        background-color: #d35400;
        transform: translateY(-2px);
    }

.btn-error {
    background-color: #e74c3c;
    color: white;
}

    .btn-error:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
    }

/* Modal Stilleri */
#modalMessageDiv {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.4s ease;
}

.modal-message-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.5s ease;
    overflow: hidden;
    position: relative;
}

.modal-message-header {
    padding: 5px 5px 5px 5px;
    text-align: center;
}

.icon-message-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2.5rem;
}

.success .icon-message-container {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.warning .icon-message-container {
    background-color: rgba(243, 156, 18, 0.2);
    color: #f39c12;
}

.error .icon-message-container {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.modal-message-title {
    text-align:center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.modal-message-body {
    padding: 0 25px 25px;
    text-align: center;
    color: #7f8c8d;
    line-height: 1.6;
}

.modal-message-footer {
    padding: 20px 25px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
}

.modal-message-close {
    padding: 12px 28px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11);
}

    .modal-message-close:hover {
        background-color: #2980b9;
        transform: translateY(-2px);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-60px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .modal-message-content {
        width: 95%;
        margin: 15% auto;
    }

    .btn {
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
    }
}
