﻿.custom-card-container {
    position: fixed;
    top: 1%;
    right: 1%;
    width: 25vw;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    margin: 4% auto;
    overflow: auto;
}

.custom-card-content {
    width: 100%;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

    .custom-card-content img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin-bottom: 20px;
    }

.custom-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

    .custom-close-btn:hover {
        color: #f00;
    }

.custom-card-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.custom-card-content p {
    font-size: 18px;
    margin-bottom: 10px;
}

.custom-card-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.custom-account-btn,
.custom-logout-btn {
    border: none;
    background-color: #2196f3;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

    .custom-account-btn:hover,
    .custom-logout-btn:hover {
        background-color: #0d47a1;
    }

/* Responsivo para pantallas pequeñas */

@media only screen and (max-width: 600px) {
    .custom-card-container {
        width: 90%;
        height: 80%;
        margin: 5% auto;
    }

    .custom-card-content {
        margin-top: 10%;
        margin-bottom: auto;
    }

        .custom-card-content img {
            width: 100px;
            height: 100px;
            margin-bottom: 10px;
        }

        .custom-card-content h2 {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .custom-card-content p {
            font-size: 16px;
            margin-bottom: 5px;
        }

    .custom-account-btn,
    .custom-logout-btn {
        font-size: 16px;
        padding: 5px 10px;
    }
}

/* Responsivo para pantallas medianas */
@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .custom-card-container {
        width: 50%;
        height: 85%;
        margin: 15% auto;
    }

    .custom-card-content {
        margin-top: 10%;
        margin-bottom: auto;
    }

        .custom-card-content img {
            width: 120px;
            height: 120px;
            margin-bottom: 15px;
        }

        .custom-card-content h2 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .custom-card-content p {
            font-size: 18px;
            margin-bottom: 10px;
        }

    .custom-account-btn,
    .custom-logout-btn {
        font-size: 16px;
        padding: 5px 10px;
    }
}

