:root {
    --black: #000;
    --white: #fff;
}

.adcap_header {
    padding: 35px 20px 0px 20px;
    margin: 0 20px 0 0;
    display: grid;
    justify-content: space-between;
    align-items: center;
}

.container {
    background: var(--white);
    margin: 0 -20px 0;
}

.logo {
    height: 40px;
    padding-left: 25px;
}

.plugin_logo {
    margin-bottom: 20px;
    margin-top: 10px;
}

.input-field {
    max-width: 500px;
    height: 40px;
    margin-bottom: 20px;
}

.input-label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.checkbox-container{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-label {
    font-size: 14px;
    margin-left: 5px;
    margin-bottom: 3px;
}

.form {
    display: flex;
    flex-direction: column;
    margin-top: 35px;
    margin-bottom: 10px;
    margin-right: 36px;
}

.plugin-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-right: 36px;
}

.plugins-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.plugin-container {
    background-color: white; 
    padding: 20px 20px 0px 20px;
    width: 320px;
    height: 225px;
    margin-bottom: 20px;
    margin-right: 30px;
    border-radius: 5px;
}

.advance-item-container {
    background-color: white; 
    padding: 20px 20px 0px 20px;
    width: 100%;
    height: 225px;
    margin-bottom: 20px;
    margin-right: 30px;
    border-radius: 5px;
}

.plugins-container, .integrating-description, .advance-container {
    margin-top: 20px;
    margin-left: 20px;
}

p {
    font-size: 14px;
}

a.link {
    font-weight: bold;
    color: var(--black);
    text-decoration: none !important;
}

a.dashboard-link {
    margin-left: 15px;
}

a.documentation-link {
    margin-left: 20px;
}

.save-button {
    display: inline-flex;
    align-items: center;
    border-style: solid;
	border-width: 1px 1px 2px;
    width: 70px;
    cursor: pointer;
    border-radius: 0.375rem;
    background-color: var(--black); 
    padding: 0.60rem 1rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    transition: background-color 0.2s;
}

.save-button:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.save-button:focus-visible {
    border: 0;
	box-shadow: none;
	outline: 2px solid var(--black);
}

.nav {
    padding: 0 20px;
}

.nav-tab {
    box-shadow: inset 0 -2px #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    margin: 0;
    padding: 15px;
    transition: box-shadow 0.1s ease;


    &.nav-tab-active,
    &.nav-tab-active:hover {
      box-shadow: inset 0 -2px var(--black);
      background: none;
    }

    &:hover {
      box-shadow: inset 0 -2px rgba(0, 0, 0, 0.4);
    }
}
