.bucket-container {
    background: #F5F5F5;
    display: block;
    width: 100%;
}

.search-container {
    background-color: #FAFAFA;
    margin: 50px;
    width: 93%;
    box-shadow: 3px 3px 5px gray;
}

.search-container .search-top {
    display: flex;
    justify-content: space-between;
}

.search-container .search {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.update-delete-btn {
    display: inline-block;
    width: 58px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.33);
    box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.043);
    border-radius: 2px;
    color: rgba(0, 0, 0, 0.33);
    text-align: center;
    margin: 15px 5px;

    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

.add-btn {
    background-color: #1890FF;
    border: 1px solid #1890FF;
    color: #FFFFFF;
    width: 111px;
    height: 32px;
    margin: 15px 20px 15px 5px;
}

/* 테이블 */
table {
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
}

.thead {
}

.th {
    background: #FAFAFA;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 60px;
    height: 56px;
}

.th.name {
    width: 202px;
}

.th.folder-name {
    width: 206px;
}

.th.file-count {
    width: 206px;
}

.th.folder-count {
    width: 206px;
}

.th.security-token {
    width: 423px;
    height: 56px;
}

.th.create-date {
    width: 303px;
    height: 56px
}

.row {

}

.col {
    background-color: #FFFFFF;
    height: 56px;
    width: 58px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

table.search-table tr:hover td {
    background-color: #FAFAFA;
}

.radio-btn {
    margin-left: 20px;
    margin-right: 20px;
}

.col span {
    margin-left: 10px;
}

.col.name {
    width: 202px;
    cursor: pointer;
}

.col.folder-name {
    width: 206px;
}

.col.file-count {
    width: 206px;
}

.col.folder-count {
    width: 206px;
}

.col.security-token {
    width: 423px;
    height: 56px;
}

.col.create-date {
    width: 303px;
    height: 56px
}