/* Additional styles for Page Title */
.page-title {
    margin-bottom: 20px;
}

.page-title h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #0077ff; /* Google Cloud Platform blue color */
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Overall Form Styling */
.camera-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

/* Form Group */
.form-group label { /* Different from form-2 */
    display: block;
    font-size: 0.95em;
    color: #333;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0077ff;
    box-shadow: 0 0 5px rgba(0, 119, 255, 0.1);
}

/* Form Group */

/* .form-group label {
    font-size: 1em;
    font-weight: bold;
    color: #333;
} */

.form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input[type="number"]:focus {
    border-color: #0077ff;
}

/* Submit and Connect Buttons */
.form-buttons {
    display: flex;
    justify-content: space-between; 
    margin-top: 20px;
}

.submit-btn,
.connect-btn {
    background-color: #0077ff;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s;
    flex: 1;
    margin-right: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover,
.connect-btn:hover {
    background-color: #0056b3;
}

.connect-btn:last-child {
    margin-right: 0;
}