﻿/* assets/css/style.css */

.tm-dashboard-container,
.tm-form-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
}

.tm-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.tm-table th,
.tm-table td {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.tm-table th {
    background-color: #f7fafc;
    color: #2d3748;
    font-weight: bold;
}

.tm-btn {
    display: inline-block;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.tm-btn-primary {
    background-color: #3182ce;
    color: #fff;
}

.tm-btn-primary:hover {
    background-color: #2b6cb0;
}

.tm-btn-success {
    background-color: #38a169;
    color: #fff;
}

.tm-btn-success:hover {
    background-color: #2f855a;
}

.tm-btn-danger {
    background-color: #e53e3e;
    color: #fff;
}

.tm-btn-danger:hover {
    background-color: #c53030;
}

.tm-btn-secondary {
    background-color: #718096;
    color: #fff;
}

.tm-btn-meet {
    background-color: #1a73e8;
    color: #ffffff !important;
    font-weight: bold;
    padding: 10px 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.tm-btn-meet:hover {
    background-color: #1557b0;
}

.tm-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.tm-status-pendiente {
    background: #feebc8;
    color: #744210;
}

.tm-status-confirmada {
    background: #c6f6d5;
    color: #22543d;
}

.tm-status-completada {
    background: #e2e8f0;
    color: #4a5568;
}

.tm-status-cancelada {
    background: #fed7d7;
    color: #742a2a;
}

.tm-form-group {
    margin-bottom: 15px;
}

.tm-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.tm-form-group input,
.tm-form-group select,
.tm-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    box-sizing: border-box;
}

.tm-alert {
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.tm-alert-success {
    background: #c6f6d5;
    color: #22543d;
}

.tm-alert-error {
    background: #fed7d7;
    color: #742a2a;
}

.tm-expired {
    color: #e53e3e;
    font-size: 13px;
    font-weight: bold;
}