/* ==== Estilos Personalizados - thefacebook 2.0 ==== */
:root {
  color-scheme: dark;
}

.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.custom-file-upload {
    cursor: pointer;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: background-color 0.2s;
}

.custom-file-upload:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.custom-file-upload input[type="file"] {
    display: none;
}

.profile-pic {
    width: 100px;
    height: 100px;
    background-color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 0.375rem;
}

.media-preview {
    max-width: 100%;
    max-height: 300px;
}

.status-update {
    background-color: #2d3748;
    color: white;
    border: 1px solid #4a5568;
}

.bg-transparent:focus {
    background-color: rgba(255, 255, 255, 0.05);
}
