/* Vendor Forms */
.vendor-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.vendor-form .form-group {
    margin-bottom: 20px;
}

.vendor-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.vendor-form input[type="text"],
.vendor-form input[type="email"],
.vendor-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.vendor-form button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

.vendor-form button:hover {
    background: #3e8e41;
}

.form-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
}

.form-message .error {
    background: #ffebee;
    color: #f44336;
}

/* Vendor Dashboard */
.vendor-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dashboard-actions {
    margin: 30px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.dashboard-actions .button {
    display: inline-block;
    padding: 12px 20px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.dashboard-actions .button:hover {
    background: #3e8e41;
}

.recent-establishments {
    margin-top: 30px;
}

.recent-establishments h3 {
    margin-bottom: 20px;
    color: #333;
}

.recent-establishments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-establishments li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recent-establishments li a {
    text-decoration: none;
    color: #2196F3;
    font-weight: 500;
}

.recent-establishments li a:hover {
    text-decoration: underline;
}

.recent-establishments li span {
    color: #666;
    font-size: 0.9em;
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 3px;
}
/***********************************************************************************************************************************************/
