/* Custom Bootstrap-like CSS within #farContainer */

#farContainer {
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
}

/* Grid System */
#farContainer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

#farContainer .row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

#farContainer [class^="col-lg-"] {
    padding: 15px;
    flex-grow: 1;
    box-sizing: border-box;
}

#farContainer .col-lg-1 { width: 8.33%; }
#farContainer .col-lg-2 { width: 16.66%; }
#farContainer .col-lg-3 { width: 25%; }
#farContainer .col-lg-4 { width: 33.33%; }
#farContainer .col-lg-5 { width: 41.66%; }
#farContainer .col-lg-6 { width: 50%; }
#farContainer .col-lg-7 { width: 58.33%; }
#farContainer .col-lg-8 { width: 66.66%; }
#farContainer .col-lg-9 { width: 75%; }
#farContainer .col-lg-10 { width: 83.33%; }
#farContainer .col-lg-11 { width: 91.66%; }
#farContainer .col-lg-12 { width: 100%; }

/* Forms */
#farContainer label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#farContainer input[type="text"],
#farContainer input[type="email"],
#farContainer input[type="password"],
#farContainer input[type="tel"],
#farContainer input[type="date"],
#farContainer input[type="file"],
#farContainer textarea,
#farContainer select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#farContainer textarea {
    resize: vertical;
}

/* Buttons */
#farContainer .btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s ease;
}

#farContainer .btn-primary {
    background: #007bff;
    color: white;
}
#farContainer .btn-primary:hover {
    background: #0056b3;
}

#farContainer .btn-secondary {
    background: #6c757d;
    color: white;
}
#farContainer .btn-secondary:hover {
    background: #545b62;
}

#farContainer .btn-success {
    background: #28a745;
    color: white;
}
#farContainer .btn-success:hover {
    background: #1e7e34;
}

#farContainer .btn-danger {
    background: #dc3545;
    color: white;
}
#farContainer .btn-danger:hover {
    background: #b21f2d;
}

#farContainer .btn-warning {
    background: #ffc107;
    color: black;
}
#farContainer .btn-warning:hover {
    background: #e0a800;
}

#farContainer .btn-info {
    background: #17a2b8;
    color: white;
}
#farContainer .btn-info:hover {
    background: #117a8b;
}

#farContainer .btn-light {
    background: #f8f9fa;
    color: black;
}
#farContainer .btn-light:hover {
    background: #dae0e5;
}

#farContainer .btn-dark {
    background: #343a40;
    color: white;
}
#farContainer .btn-dark:hover {
    background: #1d2124;
}
