.settings-section {
    padding: 20px;
    background-color: #f9f9f9;
}
.settings-row {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.settings-row__item-new {
    flex: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px;
}
.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.card-header {
    padding: 10px 15px;
    background-color: #000000;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.card-body {
    padding: 15px;
}
.form-control {
    width: calc(100% - 90px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.btn {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}
.btn-danger {
    background-color: #dc3545;
    color: #fff;
}
.btn-success {
    background-color: #28a745;
    color: #fff;
}
.list-group {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}
.list-group-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}
.list-group-item a {
    color: #007bff;
    text-decoration: none;
}
.list-group-item a:hover {
    text-decoration: underline;
}
.video-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
