/* Default styles */
.tradebyte-settings-wrapper {
    background: #fff;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
    max-width: 600px; /* Adjust the maximum width as needed */
    margin: 0 auto; /* Center align the form */
}

.tradebyte-settings-wrapper h2 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.form-section {
    background: #f9f9f9;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid #ddd;
}

.form-section h3 {
    margin-top: 0;
}

.form-table th {
    padding: 20px 10px;
    text-align: left;
    font-weight: 600;
}

.form-table td {
    padding: 15px 10px;
}

.form-table input.regular-text,
.custom-input-field { /* Include the new class in this selector */
    width: 100%;
    min-width: 150px; /* Set a minimum width to allow expansion */
    padding: 8px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.form-table input[type="password"] {
    background: #FCFDFE;
}

.submit {
    padding: 0 10px 10px;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .tradebyte-settings-wrapper {
        padding: 10px;
    }

    .form-table th,
    .form-table td {
        padding: 10px;
    }

    .submit {
        padding: 0 5px 5px;
    }
}
/* Success notice style */
.notice-success {
    background-color: #4CAF50; /* Green background color */
    color: #fff; /* White text color */
    padding: 10px 20px; /* Padding around the text */
    border-radius: 3px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Drop shadow for depth */
    margin: 20px 0; /* Margin to separate from other content */
    text-align: center; /* Center-align the text */
}

.notice-success p {
    margin: 0; /* Remove default paragraph margin */
}

/* Warning notice style */
.notice-warning {
    background-color: #FFC107; /* Amber background color */
    color: #333; /* Dark text color */
    padding: 10px 20px; /* Padding around the text */
    border-radius: 3px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Drop shadow for depth */
    margin: 20px 0; /* Margin to separate from other content */
    text-align: center; /* Center-align the text */
}

.notice-warning p {
    margin: 0; /* Remove default paragraph margin */
}

/* Danger notice style */
.notice-danger {
    background-color: #FF5722; /* Red background color */
    color: #fff; /* White text color */
    padding: 10px 20px; /* Padding around the text */
    border-radius: 3px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Drop shadow for depth */
    margin: 20px 0; /* Margin to separate from other content */
    text-align: center; /* Center-align the text */
}

.notice-danger p {
    margin: 0; /* Remove default paragraph margin */
}
