#dialog-btn-2 {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 200px;
    min-height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    vertical-align: middle;
}

#dialog-btn-2:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

#dialog-2 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn-2 0.3s;
}

#dialog-2 .dialog-content {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 80%;
    max-width: 500px;
    margin: 8% auto;
    animation: slideInFromTop-2 0.2s ease-out;
}

#dialog-2 .card-header {
    background-color: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e9ecef;
}

#dialog-2 .card-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
}

#dialog-2 .card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

#dialog-2 .card-body {
    padding: 20px;
}

#dialog-2 .card-body p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

#dialog-2 .card-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

#dialog-2 .close-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

#dialog-2 .close-btn:hover {
    background-color: #0056b3;
}

@keyframes fadeIn-2 {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromTop-2 {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #dialog-2 .dialog-content {
        width: 90%;
        margin: 15% auto;
    }

    #dialog-2 .card-title {
        font-size: 16px;
    }

    #dialog-2 .card-body p {
        font-size: 14px;
    }
}