/* General Layout */
.analytics-tracker-settings {
    display: flex;
    justify-content: center; /* Centering content */
    padding: 30px;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    border-radius: 10px;
}

/* Left Section */
.left-section {
    width: 70%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Logo and Title */
.logo-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.logo {
    width: 40px;
    margin-right: 15px;
}
h1 {
    font-size: 26px;
    color: #333;
}

/* Description Box */
.description-box {
    margin-bottom: 30px;
}
.description-box h2 {
    font-size: 22px;
    font-weight: bold;
    color: #444;
}
.description-box p {
    font-size: 16px;
    color: #777;
}
.button-primary {
    background-color: #3498db;
    border: none;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.button-primary:hover {
    background-color: #2980b9;
}

/* Script Input Area */
textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 20px;
    resize: none;
}
.save-button {
    background-color: #000;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.save-button:hover {
    background-color: #444;
}
