/* css/custom-styles.css */

#content-importer-for-notion-plugin-admin {
    padding: 5px 20px;
}


#content-importer-for-notion-plugin-admin .widefat {
    width: 100%; /* Makes the text fields use full width */
    max-width: 900px; /* Set a maximum width if desired */
    min-height: 40px; /* Adjust height if necessary */
    padding: 10px; /* Add some padding */
}


#content-importer-for-notion-plugin-admin .widetable {
    max-width: 100%;
}

#content-importer-for-notion-plugin-admin .red-text {
    color: red;
}

#content-importer-for-notion-plugin-admin #loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

#content-importer-for-notion-plugin-admin .loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}


.content-importer-for-notion-header {
    background-color: #2e65a8; /* Dark blue background */
    color: white;
    width: 100%;
    position: sticky;
    top: 32px;
    left: 0;
    margin: 0;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.content-importer-for-notion-header-inner {
    max-width: 100%; /* Ensure it spans the full content width */
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-importer-for-notion-logo {
    height: 50px; /* Adjust to fit desired size */
    max-height: 100%; /* Prevent overflowing */
    width: auto; /* Maintain aspect ratio */
    margin-right: 20px; /* Spacing between logo and title */
}


.content-importer-for-notion-title {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
    color: white;


}

.content-importer-for-notion-nav  {
    display: flex;
    justify-content: flex-start; /* Aligns the nav items to the left */
    flex-grow: 1; /* Allows the nav to expand and take available space */
    margin-left: 20px;

}


.content-importer-for-notion-nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #ffffff; /* White text for links */
    font-weight: 500;
}
.content-importer-for-notion-nav a:hover {
    text-decoration: underline;
}
.content-importer-for-notion-nav a.active {
    font-weight: bold;
    color: #ffcc00; /* Highlighted tab color */
}
.content-importer-for-notion-body {
    margin: 0;
    padding: 20px;
    background: #ffffff;
}


/* Remove extra margin between admin menu and plugin header */
#wpcontent {
    padding-left: 0 !important;
}
.content-importer-for-notion-header {
    margin-left: 0 !important;
}