html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

.card{
    background-color: #fff;
}

/* Fondo traslúcido y con blur */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.card > * {
    position: relative;
    z-index: 1;
}

.avatar{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid #ee3a9b;
    background-image: url("../img/logo.png");
    background-size: cover;
    background-position: 0%;
    display: block;
    margin: 0 auto;
    margin-top: 0px;
}

.name{
    font-family: Montserrat;
    font-weight: 700;
    color: #ee3a9b;
    font-size: 1.25rem;
    margin-top: 30px;
    text-align: center;
}

.subject{
    color: #151515;
    font-family: Montserrat;
    font-size: 0.85rem;
    text-align: center;
}

.container {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center !important;
    margin: 0 auto;
    font-family: montserrat;
}

.caard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ee3a9b;
    padding: 14px 16px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
    width: 90%;
    height: 30px;
    border-radius: 05px;
    margin-top: 20px;
    margin-bottom: -20px;
}

.caard-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon {
    font-size: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}

.arrow-diagonal {
    display: inline-block; 
    transform: rotate(-45deg); 
}

.title {
    font-size: 12px;
    font-weight: bold;
}

.text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.subtitle {
    font-size: 12px;
    color: #ccc;
}

.subtitle {
    font-size: 11px;
    color: #ccc;
}

.mainbutton{
    background-color: transparent;
    border: 1px solid #ee3a9b;
    color: #ee3a9b;
    font-family: Montserrat;
    font-size: 12px;
    padding: 05px;
    width: 90%;
    height: 40px;
    border-radius: 05px;
    margin-top: 20px;
    cursor: pointer;
}

.url{
    color: #ee3a9b;
    font-family: Montserrat;
    font-size: 12px;
    text-align: center;
    margin-top: 50px;
    cursor: pointer;
}

.savebutton{
    background-color: #ee3a9b;
    color: #101010;
    font-family: Montserrat;
    font-size: 11px;
    padding: 05px;
    width: 85%;
    height: 45px;
    border-radius: 05px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
    border: none;
    position: fixed;
    z-index: 999;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-buttons {
    position: fixed;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.fab-btn {
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    font-size: 20px;
    color: #333;
}

.fab-btn:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.fab-btn i{
    font-size: 13px;
}

/* For Mobile */
@media screen and (max-width: 540px) {
    .card {
        width: 100% !important;
        height: 100% !important;
        border-radius: 0;
    }

    .header{
        border-radius: 0;
    }
}

/* For Tablets */
@media screen and (min-width: 540px) and (max-width: 780px) {
    .card {
        width: 100% !important;
        height: 100% !important;
        border-radius: 0;
    }

    .header{
        border-radius: 0;
    }
}