address > * {
    font-style: normal;
}

code {
    font-family: menlo, inconsolata, monospace;
    font-size: calc(1em - 2px);
    color: #555;
    background-color: #f0f0f0;
    padding: 0.2em 0.4em;
    border-radius: 2px;
}

ul.action-list {
    list-style: none;
    margin: 0;
    /* font-size: 1.4rem;  */
}

ul.action-list li {
    position: relative;
    padding: .2rem .5rem;
    transition: background ease 0.3s;
    display: flex;
    justify-content: space-between;
}

.action-list li button {
    margin: 0;
    padding: 0;
    background: none;
    color: #fff;
}

.action-list li:hover button {
    color: #222;
}

ul.action-list li a {
    color: inherit;
    text-decoration: none;
}

ul.action-list:not(.no-stripe) li:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.07);
}

ul.action-list li:hover,
ul.action-list:not(.no-stripe) li:nth-of-type(odd):hover {
    background: rgba(255, 255, 255, 1);
    color: #222;
}

.pointer:hover {
    cursor: pointer;
}

dialog {
    color: inherit;
}

/* File-Pond */
.filepond--wrapper {
    background: rgba(255, 255, 255, 0.07);
}

.filepond--root {
    color: white;
    font-size: 2rem;
    font-family: inherit;
}

/* use a hand cursor intead of arrow for the action buttons */
.filepond--file-action-button {
    cursor: pointer;
}

/* the text color of the drop label*/
.filepond--drop-label {
    color: #fffa;
}

/* underline color for "Browse" button */
.filepond--label-action {
    text-decoration-color: #aaa;
}

/* the background color of the filepond drop area */
/* the border radius of the drop area */
.filepond--panel-root {
    background-color: #eee;
    border-radius: 0;
}

/* the background color of the file and file panel (used when dropping an image) */
/* the border radius of the file item */
.filepond--panel.filepond--item-panel {
    color: black;
    background-color: white !important;
    border-radius: 10rem;
    height: unset;
}

.filepond--item-panel {
    background-color: transparent;
}

/* the background color of the drop circle */
.filepond--drip-blob {
    background-color: #fffa;
}

/* the background color of the black action buttons */
.filepond--file-action-button {
    background-color: rgba(0, 0, 0, 0.5);
}

/* the icon color of the black action buttons */
.filepond--file-action-button {
    color: white;
}

/* the color of the focus ring */
.filepond--file-action-button:hover,
.filepond--file-action-button:focus {
    box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.9);
}

/* the text color of the file status and info labels */
.filepond--file {
    color: black;
}

/* error state color */
[data-filepond-item-state*='error'] .filepond--item-panel,
[data-filepond-item-state*='invalid'] .filepond--item-panel {
    background-color: red;
}

[data-filepond-item-state='processing-complete'] .filepond--item-panel {
    background-color: green;
}

/* bordered drop area */
.filepond--panel-root,
.filepond--root {
    background-color: transparent;
}

.red {
    color: #b00020;
}

.yellow {
    color: #b39200;
}

.test {
    color: unset;
    padding: unset;
    font-family: unset;
}

/* Reseting styling on resume html elements */
.resumeTable {
    all: revert;
}