/* Estilos Comunes para ChatLink */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f0f2f5;
}



/* Colores del tema */

:root {
    --primary-color: #5FCF80;
    --secondary-color: #4A5568;
    --tertiary-color: #68D391;
    --bg-chat: #efeae2;
    --bg-light: #f0f2f5;
    --text-primary: #111;
    --text-secondary: #667781;
    --text-tertiary: #8696a0;
    --border-color: #d1d7db;
}



/* Avatar */

.avatar {
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}



/* Botones */

.btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}



    .btn-primary:hover {
        background: #4aba6d;
    }



.btn-secondary {
    background: white;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}



.icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-secondary);
    cursor: pointer;
}



    .icon-btn:hover {
        color: var(--text-primary);
    }



/* Formularios */

.form-group {
    margin-bottom: 20px;
}



    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #333;
        font-weight: 500;
    }



    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
    }



        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
        }



/* Links */

a {
    color: var(--tertiary-color);
    text-decoration: none;
}



    a:hover {
        text-decoration: underline;
    }
