/* Base Styles */
/* Gradient background for the entire page */
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: linear-gradient(120deg, #e1f6ff, #bcbee6);
    color: #1f1f1f;
    line-height: 1.6;
    display: flex; /* Flexbox for centering the content */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100lvh;
}

/* Center the content with margins and set max width */
main {
    margin: 2rem auto;
    padding: 3rem 4rem;
    background: linear-gradient(120deg, #efefef, #dddddd);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for modern look */
    border-radius: 8px; /* Rounded corners */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin: 1rem 0 0.5rem;
}

/* Paragraphs */
p {
    margin: 0 0 1rem;
}

/* Details and Summary tags */
details {
    margin: 1rem 0;
    padding: 0.5rem;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* A more modern shadow */
}

summary {
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

/* Lists */
ul, ol {
    margin: 0 0 1rem 1.5rem;
    padding: 0;
    list-style: initial;
}

li {
    margin: 0.5rem 0;
}

/* For better readability and clean spacing */
* {
    box-sizing: border-box;
}


/* Modern Button Styles */
button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #007BFF; /* Primary blue color */
    border: none;
    border-radius: 6px; /* Slightly rounded corners */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover and Focus Effects */
button:hover,
button:focus {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); /* More prominent shadow */
    outline: none; /* Remove default focus outline */
}

/* Disabled Button Styles */
button:disabled {
    background-color: #c0c0c0; /* Light gray for disabled state */
    cursor: not-allowed;
    box-shadow: none;
}

.panel-sobjects-list {
    border-radius: 4px;
    padding: 1rem 1.5rem;
    height: 300px;
    overflow-y: scroll;
    background: white;
}
