/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #34495e;
}

.form-group select,
.form-group input {
    padding: 8px 12px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Add fixture form styling */
.add-fixture-form {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.add-fixture-form h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 1.3rem;
}

/* Inline Edit Form */
.inline-edit-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 2px solid #3498db;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 500px;
    max-width: 80vw;
    max-height: 90vh;
    overflow-y: auto;
}

.inline-edit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e1e8ed;
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

.inline-edit-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
}

.inline-edit-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.inline-edit-form .form-group {
    flex: 1;
}

.inline-edit-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.inline-edit-form .form-group select,
.inline-edit-form .form-group input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e1e8ed;
    border-radius: 6px;
    font-size: 0.9rem;
}

.inline-edit-form .form-group select:focus,
.inline-edit-form .form-group input:focus {
    outline: none;
    border-color: #3498db;
}

.inline-edit-form .form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 20px;
    border-top: 1px solid #e1e8ed;
}

/* Form indicators styling */
.form-indicators {
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;
}

.form-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.form-circle.win {
    background-color: #27ae60;
}

.form-circle.draw {
    background-color: #95a5a6;
}

.form-circle.loss {
    background-color: #e74c3c;
}

.form-circle.no-game {
    background-color: #ecf0f1;
    border: 1px solid #bdc3c7;
}
