/* style.css */
.tvd-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tvd-form {
    padding: 15px;
}

.tvd-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

.tvd-form input[type="text"],
.tvd-form input[type="email"],
.tvd-form input[type="password"],
.tvd-form input[type="number"] {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.tvd-form input[type="submit"] {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.tvd-form input[type="submit"]:hover {
    background: #0056b3;
}

.tvd-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.tvd-table th,
.tvd-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tvd-table th {
    background: #f8f9fa;
    color: #333;
    font-weight: bold;
}

.tvd-table tr:hover {
    background: #f5f5f5;
}

.tvd-message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.tvd-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.tvd-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.tvd-user-info {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 20px;
}

.tvd-user-info p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .tvd-table {
        display: block;
        overflow-x: auto;
    }
    
    .tvd-form input[type="text"],
    .tvd-form input[type="email"],
    .tvd-form input[type="password"],
    .tvd-form input[type="number"] {
        max-width: 100%;
    }
}