.tcf-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tcf-form input[type="text"],
.tcf-form input[type="email"],
.tcf-form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.tcf-form input[type="text"]:focus,
.tcf-form input[type="email"]:focus,
.tcf-form textarea:focus {
    border-color: #2F8989;
    outline: none;
    box-shadow: 0 0 5px rgba(47, 137, 137, 0.2);
}

.tcf-form label {
    display: block;
    margin-top: 15px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.tcf-form button {
    background-color: #2F8989;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.tcf-form button:hover {
    background-color: #246D6D;
}

.tcf-message {
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 14px;
}

.tcf-success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.tcf-error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/* Admin panel styles */
.tcf-admin-table {
    margin-top: 20px;
}

.tcf-admin-table th {
    background-color: #2F8989;
    color: white;
    padding: 12px;
}

.tcf-admin-table td {
    padding: 12px;
    vertical-align: top;
}

.tcf-admin-header {
    color: #2F8989;
    margin-bottom: 20px;
} 